aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-04-30 12:07:00 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-04-30 12:07:00 +1000
commit621243f723e1d5d04aaf9d2e78d5d075cd24586a (patch)
treea579ff61a820f39e3e4a71ee6a61ff0557a38d75 /src/Java/gtPlusPlus/core
parent2f4609e80f915b7ba1a1f89ec60cca3e7f2d3e49 (diff)
downloadGT5-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.java4
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();