diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-01 02:07:37 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-01 02:07:37 +1000 |
commit | af0fde5a27ba28b744d56085e1399ed95d4c5ee9 (patch) | |
tree | e8194630b339c4a9252b3ed083ea609b3c947e8c /src/Java/gtPlusPlus/core/item/ModItems.java | |
parent | 3b03ee38c1c8dbd034202d2c4bb0f2dc4fb82170 (diff) | |
download | GT5-Unofficial-af0fde5a27ba28b744d56085e1399ed95d4c5ee9.tar.gz GT5-Unofficial-af0fde5a27ba28b744d56085e1399ed95d4c5ee9.tar.bz2 GT5-Unofficial-af0fde5a27ba28b744d56085e1399ed95d4c5ee9.zip |
+ Basic Fire Maker. (1/4 change to light a fire, can also set you on fire if it fails)
+ Maceration recipes for the non-TC shards into non-TC shard dust. (Which GT then oreDicts into it's own, for making Energy Crystal)
+ Recipes for the Multi-tank Controller and it's frame blocks. (Fixes #40)
+ 4 new pipe types. Now there are 5 sizes of Tungsten, Dark Steel, Lead and Clay.
- Hydrogen Blobs no longer get registered as dustHydrogen. (Broke many things without intention)
$ Hopefully made a fix to the Multi-Tank, where it would reset it's storage multiplier to 0 or 1 when a world reloaded.
% Enabled a previously disabled logging feature.
+ Put extra logging into getItemStackOfAmountFromOreDictNoBroken() during debug mode.
$ Cleaned up ReflectionUtils.java and added a new method getMethodName() which will show where a method was called from.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item/ModItems.java')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/ModItems.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/item/ModItems.java b/src/Java/gtPlusPlus/core/item/ModItems.java index adaab20738..c97401bd1d 100644 --- a/src/Java/gtPlusPlus/core/item/ModItems.java +++ b/src/Java/gtPlusPlus/core/item/ModItems.java @@ -159,6 +159,8 @@ public final class ModItems { public static BaseItemTCShard shardAqua; public static BaseItemTCShard shardDull; + + public static Item itemBasicFireMaker; //@SuppressWarnings("unused") @@ -186,10 +188,12 @@ public final class ModItems { //Register Hydrogen Blobs first, so we can replace old helium blobs. itemHydrogenBlob = new CoreItem("itemHydrogenBlob", tabMisc).setTextureName(CORE.MODID + ":itemHydrogenBlob"); - GT_OreDictUnificator.registerOre("dustHydrogen", new ItemStack(ModItems.itemHydrogenBlob)); + //GT_OreDictUnificator.registerOre("dustHydrogen", new ItemStack(ModItems.itemHydrogenBlob)); //Register Old Helium Blob, this will be replaced when held by a player. itemHeliumBlob = new CoreItem("itemHeliumBlob", tabMisc, ItemUtils.getSimpleStack(itemHydrogenBlob)).setTextureName(CORE.MODID + ":itemHeliumBlob"); + //Register this neato device, for making some fires. + itemBasicFireMaker = new ItemBasicFirestarter(); //Make some backpacks //Primary colours |