diff options
author | Jordan Byrne <draknyte1@hotmail.com> | 2017-12-09 21:10:09 +1000 |
---|---|---|
committer | Jordan Byrne <draknyte1@hotmail.com> | 2017-12-09 21:10:09 +1000 |
commit | 2e887e3ea2f8bbc9d7dd5610c29d51a76fd96dfe (patch) | |
tree | b03a4a14e5a3de43e7f94de242c040e079b681f1 /src | |
parent | 1a0a77b62eb33aa3960f4b673785aed343f57b8a (diff) | |
download | GT5-Unofficial-2e887e3ea2f8bbc9d7dd5610c29d51a76fd96dfe.tar.gz GT5-Unofficial-2e887e3ea2f8bbc9d7dd5610c29d51a76fd96dfe.tar.bz2 GT5-Unofficial-2e887e3ea2f8bbc9d7dd5610c29d51a76fd96dfe.zip |
$ Fixed an issue where we got cascading static initialisation after the client or server had loaded players into the world.
Diffstat (limited to 'src')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/ModItems.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/item/ModItems.java b/src/Java/gtPlusPlus/core/item/ModItems.java index 64e6ae44ef..c6593ea82e 100644 --- a/src/Java/gtPlusPlus/core/item/ModItems.java +++ b/src/Java/gtPlusPlus/core/item/ModItems.java @@ -686,7 +686,7 @@ public final class ModItems { } //EnderIO Resources - if ((LoadedMods.EnderIO || LOAD_ALL_CONTENT) && !CORE.GTNH){ + if ((LoadedMods.EnderIO || LOAD_ALL_CONTENT)){ Utils.LOG_INFO("EnderIO Found - Loading Resources."); //Enderio Dusts itemDustSoularium = ItemUtils.generateSpecialUseDusts("Soularium", "Soularium", MaterialEIO.SOULARIUM.vChemicalFormula, MaterialEIO.SOULARIUM.getRgbAsHex())[0]; |