aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/gregtech/api/gui
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-04-25 12:32:53 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-04-25 12:32:53 +1000
commit9aedb8e33e04654018db03e3b2c4994ecccb6149 (patch)
tree07153f1d5718af8a6dd94debdcd9e6c43d9f6bbe /src/Java/miscutil/gregtech/api/gui
parentd0d5d53dad03639177a244ce159c30ee56c43b32 (diff)
downloadGT5-Unofficial-9aedb8e33e04654018db03e3b2c4994ecccb6149.tar.gz
GT5-Unofficial-9aedb8e33e04654018db03e3b2c4994ecccb6149.tar.bz2
GT5-Unofficial-9aedb8e33e04654018db03e3b2c4994ecccb6149.zip
Implemented the groundwork for some custom textures.
Not using them currently though, as they cause the client to crash. Will debug more & use default turbine textures for now.
Diffstat (limited to 'src/Java/miscutil/gregtech/api/gui')
-rw-r--r--src/Java/miscutil/gregtech/api/gui/GUI_IronBlastFurnace.java2
-rw-r--r--src/Java/miscutil/gregtech/api/gui/GUI_SafeBlock.java2
-rw-r--r--src/Java/miscutil/gregtech/api/gui/GUI_SteamCondenser.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/miscutil/gregtech/api/gui/GUI_IronBlastFurnace.java b/src/Java/miscutil/gregtech/api/gui/GUI_IronBlastFurnace.java
index 6f8c42cbaa..92ed9bd702 100644
--- a/src/Java/miscutil/gregtech/api/gui/GUI_IronBlastFurnace.java
+++ b/src/Java/miscutil/gregtech/api/gui/GUI_IronBlastFurnace.java
@@ -8,7 +8,7 @@ import net.minecraft.entity.player.InventoryPlayer;
public class GUI_IronBlastFurnace
extends GT_GUIContainerMetaTile_Machine {
public GUI_IronBlastFurnace(InventoryPlayer aInventoryPlayer, IGregTechTileEntity aTileEntity) {
- super(new CONTAINER_IronBlastFurnace(aInventoryPlayer, aTileEntity), CORE.MODID+":textures/gui/IronBlastFurnace.png");
+ super(new CONTAINER_IronBlastFurnace(aInventoryPlayer, aTileEntity), CORE.RES_PATH_GUI+"IronBlastFurnace.png");
}
@Override
diff --git a/src/Java/miscutil/gregtech/api/gui/GUI_SafeBlock.java b/src/Java/miscutil/gregtech/api/gui/GUI_SafeBlock.java
index 165e4cb6ea..65ef072281 100644
--- a/src/Java/miscutil/gregtech/api/gui/GUI_SafeBlock.java
+++ b/src/Java/miscutil/gregtech/api/gui/GUI_SafeBlock.java
@@ -8,7 +8,7 @@ import net.minecraft.entity.player.InventoryPlayer;
public class GUI_SafeBlock
extends GT_GUIContainerMetaTile_Machine {
public GUI_SafeBlock(InventoryPlayer aInventoryPlayer, IGregTechTileEntity aTileEntity) {
- super(new CONTAINER_SafeBlock(aInventoryPlayer, aTileEntity), CORE.MODID + ":" + "textures/gui/" + "SafeBlock.png");
+ super(new CONTAINER_SafeBlock(aInventoryPlayer, aTileEntity), CORE.RES_PATH_GUI + "SafeBlock.png");
}
//String UUID = ((CONTAINER_SafeBlock)this.mContainer).ownerUUID.toString();
diff --git a/src/Java/miscutil/gregtech/api/gui/GUI_SteamCondenser.java b/src/Java/miscutil/gregtech/api/gui/GUI_SteamCondenser.java
index 1c125e86fd..6a6e01c243 100644
--- a/src/Java/miscutil/gregtech/api/gui/GUI_SteamCondenser.java
+++ b/src/Java/miscutil/gregtech/api/gui/GUI_SteamCondenser.java
@@ -11,7 +11,7 @@ public class GUI_SteamCondenser extends GT_GUIContainerMetaTile_Machine
public GUI_SteamCondenser(InventoryPlayer aInventoryPlayer, IGregTechTileEntity aTileEntity, String aTextureName, int aSteamCapacity)
{
- super(new CONTAINER_SteamCondenser(aInventoryPlayer, aTileEntity, aSteamCapacity), CORE.MODID + ":" + "textures/gui/" + aTextureName);
+ super(new CONTAINER_SteamCondenser(aInventoryPlayer, aTileEntity, aSteamCapacity), CORE.RES_PATH_GUI + aTextureName);
}
@Override