diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-12 16:22:28 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-12 16:22:28 +1000 |
commit | 8e0cf5dc9f6e75f0dd12b76f178123fedbb91821 (patch) | |
tree | 2b8e5d32844dc04312d4184e5843857c6a0188d1 /src/Java/gtPlusPlus/core/util | |
parent | 99e8346ded20824df3a3516e6352c7b0926f5a06 (diff) | |
download | GT5-Unofficial-8e0cf5dc9f6e75f0dd12b76f178123fedbb91821.tar.gz GT5-Unofficial-8e0cf5dc9f6e75f0dd12b76f178123fedbb91821.tar.bz2 GT5-Unofficial-8e0cf5dc9f6e75f0dd12b76f178123fedbb91821.zip |
+ Added Double plates for all materials.
+ Added recipes for lower tier Huge pipes using double plates to enable their use earlier on.
Diffstat (limited to 'src/Java/gtPlusPlus/core/util')
-rw-r--r-- | src/Java/gtPlusPlus/core/util/item/UtilsItems.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/util/item/UtilsItems.java b/src/Java/gtPlusPlus/core/util/item/UtilsItems.java index d6d4a85b23..d68174f7bb 100644 --- a/src/Java/gtPlusPlus/core/util/item/UtilsItems.java +++ b/src/Java/gtPlusPlus/core/util/item/UtilsItems.java @@ -13,6 +13,7 @@ import gtPlusPlus.core.item.base.gears.BaseItemGear; import gtPlusPlus.core.item.base.ingots.BaseItemIngot; import gtPlusPlus.core.item.base.ingots.BaseItemIngotHot; import gtPlusPlus.core.item.base.plates.BaseItemPlate; +import gtPlusPlus.core.item.base.plates.BaseItemPlateDouble; import gtPlusPlus.core.item.base.rings.BaseItemRing; import gtPlusPlus.core.item.base.rods.BaseItemRod; import gtPlusPlus.core.item.base.rods.BaseItemRodLong; @@ -317,6 +318,7 @@ public class UtilsItems { temp = new BaseItemDust("itemDustSmall"+unlocalizedName, materialName, matInfo, Colour, "Small", hotIngot, materialTier, sRadiation); temp = new BaseItemPlate("itemPlate"+unlocalizedName, materialName, Colour, materialTier, sRadiation); + temp = new BaseItemPlateDouble("itemPlateDouble"+unlocalizedName, materialName, Colour, materialTier, sRadiation); temp = new BaseItemRod("itemRod"+unlocalizedName, materialName, Colour, materialTier, sRadiation); temp = new BaseItemRodLong("itemRodLong"+unlocalizedName, materialName, Colour, materialTier, sRadiation); temp = new BaseItemRing("itemRing"+unlocalizedName, materialName, Colour, materialTier); |