From 9aedb8e33e04654018db03e3b2c4994ecccb6149 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Mon, 25 Apr 2016 12:32:53 +1000 Subject: 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. --- src/Java/miscutil/gregtech/api/gui/GUI_SafeBlock.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/miscutil/gregtech/api/gui/GUI_SafeBlock.java') 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(); -- cgit