0.1.9
EnergonRelics/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2020-08-20 20:53:33 -04:00
parent fbb1020ce8
commit c484e6d78a
4 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,8 @@
# Changelog
**Beta 0.1.9**
* Fix Profiling
**Beta 0.1.8**
* Fix Creative Inventory Breaking

View File

@ -10,7 +10,7 @@ org.gradle.jvmargs = -Xmx1G
fabric_loader_version = 0.9.0+build.204
# Mod Properties
mod_version = 0.1.8
mod_version = 0.1.9
maven_group = com.thebrokenrail
# Dependencies

View File

@ -69,7 +69,7 @@ public class EnergyTicker {
allLoaded = Collections.unmodifiableList(started);
world.getProfiler().visit("shuffle");
world.getProfiler().push("shuffle");
Collections.shuffle(started, world.random);
world.getProfiler().pop();

View File

@ -109,6 +109,8 @@ public final class InfuserRegistry {
add(Items.GOLD_NUGGET, new InfuserEntry(260, 0.3d, new InfuserAction[]{new InfuserAction.ItemAction(Items.GOLD_INGOT)}, new InfuserAction[]{new InfuserAction.ItemAction(Items.IRON_NUGGET), new InfuserAction.ParticleAction()}));
add(Items.IRON_NUGGET, new InfuserEntry(260, 0.3d, new InfuserAction[]{new InfuserAction.ItemAction(Items.IRON_INGOT)}, new InfuserAction[]{new InfuserAction.ParticleAction()}));
add(Items.IRON_ORE, new InfuserEntry(270, 0.42d, new InfuserAction[]{new InfuserAction.ItemAction(Items.GOLD_ORE)}, new InfuserAction[]{new InfuserAction.ItemAction(Items.IRON_ORE), new InfuserAction.ItemAction(Items.STONE)}));
}
private static Item[] getWool() {