diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-06-06 18:20:25 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-06-06 18:20:25 +1000 |
commit | 1e5b0f50e7089017873950729b2a346e12562799 (patch) | |
tree | 56bae0fb746aba70c47b591c7581d1d4f80397b7 /src/Java/gtPlusPlus/core/item | |
parent | 06c09921b2a62ccff0c87e7a820b8ca4fa22b04e (diff) | |
download | GT5-Unofficial-1e5b0f50e7089017873950729b2a346e12562799.tar.gz GT5-Unofficial-1e5b0f50e7089017873950729b2a346e12562799.tar.bz2 GT5-Unofficial-1e5b0f50e7089017873950729b2a346e12562799.zip |
+ Added the components for the Boilers and the Dehydrator into the load sequence.
$ Changed the Sensors to use the old, albeit now fixed, GT_Shaped_Recipe_Builder.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/ModItems.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/item/ModItems.java b/src/Java/gtPlusPlus/core/item/ModItems.java index f093d7bf41..2528a318c6 100644 --- a/src/Java/gtPlusPlus/core/item/ModItems.java +++ b/src/Java/gtPlusPlus/core/item/ModItems.java @@ -21,6 +21,7 @@ import gtPlusPlus.core.item.base.plates.BaseItemPlate; import gtPlusPlus.core.item.base.plates.BaseItemPlateDouble; import gtPlusPlus.core.item.effects.RarityUncommon; import gtPlusPlus.core.item.general.*; +import gtPlusPlus.core.item.general.chassis.*; import gtPlusPlus.core.item.init.ItemsFoods; import gtPlusPlus.core.item.init.ItemsMultiTools; import gtPlusPlus.core.item.tool.misc.SandstoneHammer; @@ -203,6 +204,10 @@ public final class ModItems { public static Item itemSmallWroughtIronGear; public static Item itemPlateLithium; + public static itemBoilerChassis itemBoilerChassis; + public static itemDehydratorCoilWire itemDehydratorCoilWire; + public static itemDehydratorCoil itemDehydratorCoil; + public static final void init(){ @@ -533,6 +538,10 @@ public final class ModItems { if (ItemUtils.getItemStackOfAmountFromOreDictNoBroken("plateLithium", 1) == null){ itemPlateLithium = new BaseItemPlate(MaterialUtils.generateMaterialFromGtENUM(Materials.Lithium)); } + + itemBoilerChassis = new itemBoilerChassis(); + itemDehydratorCoilWire = new itemDehydratorCoilWire(); + itemDehydratorCoil = new itemDehydratorCoil(); //Misc Items Item tI; |