This commit is contained in:
parent
fbb1020ce8
commit
c484e6d78a
@ -1,5 +1,8 @@
|
||||
# Changelog
|
||||
|
||||
**Beta 0.1.9**
|
||||
* Fix Profiling
|
||||
|
||||
**Beta 0.1.8**
|
||||
* Fix Creative Inventory Breaking
|
||||
|
||||
|
@ -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
|
||||
|
@ -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();
|
||||
|
||||
|
@ -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() {
|
||||
|
Reference in New Issue
Block a user