diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-04-30 12:07:00 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-04-30 12:07:00 +1000 |
commit | 621243f723e1d5d04aaf9d2e78d5d075cd24586a (patch) | |
tree | a579ff61a820f39e3e4a71ee6a61ff0557a38d75 /src/Java/gtPlusPlus/core | |
parent | 2f4609e80f915b7ba1a1f89ec60cca3e7f2d3e49 (diff) | |
download | GT5-Unofficial-621243f723e1d5d04aaf9d2e78d5d075cd24586a.tar.gz GT5-Unofficial-621243f723e1d5d04aaf9d2e78d5d075cd24586a.tar.bz2 GT5-Unofficial-621243f723e1d5d04aaf9d2e78d5d075cd24586a.zip |
% Changed the display names of HF and HC to support GT changes. Fixes #75
% Swapped two textures around for mysterious blobs.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/ModItems.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/item/ModItems.java b/src/Java/gtPlusPlus/core/item/ModItems.java index f6c949df13..b6953456b1 100644 --- a/src/Java/gtPlusPlus/core/item/ModItems.java +++ b/src/Java/gtPlusPlus/core/item/ModItems.java @@ -224,10 +224,10 @@ public final class ModItems { //Register Hydrogen Blobs first, so we can replace old helium blobs. - itemHydrogenBlob = new CoreItem("itemHydrogenBlob", "Mysterious Hydrogen Blob", tabMisc).setTextureName(CORE.MODID + ":itemHydrogenBlob"); + itemHydrogenBlob = new CoreItem("itemHydrogenBlob", "Mysterious Hydrogen Blob", tabMisc).setTextureName(CORE.MODID + ":itemHeliumBlob"); //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"); + itemHeliumBlob = new CoreItem("itemHeliumBlob", tabMisc, ItemUtils.getSimpleStack(itemHydrogenBlob)).setTextureName(CORE.MODID + ":itemHydrogenBlob"); //Register this neato device, for making some fires. itemBasicFireMaker = new ItemBasicFirestarter(); |