diff --git a/BuildCraft b/BuildCraft index 1e0e30d..03acd96 160000 --- a/BuildCraft +++ b/BuildCraft @@ -1 +1 @@ -Subproject commit 1e0e30d62af681f74ee834ee9db0a8ac77eab4f1 +Subproject commit 03acd96b2b5a9a3270985246cd835c0ca866def7 diff --git a/additionalpipes/gui/GuiTeleportPipe.java b/additionalpipes/gui/GuiTeleportPipe.java index e333026..2cd7c4f 100644 --- a/additionalpipes/gui/GuiTeleportPipe.java +++ b/additionalpipes/gui/GuiTeleportPipe.java @@ -75,7 +75,7 @@ public String getTooltip() { private final GuiButton[] buttons = new GuiButton[8]; public GuiTeleportPipe(EntityPlayer player, PipeTeleport pipe) { - super(new ContainerTeleportPipe(player, pipe), null); + super(new ContainerTeleportPipe(player, pipe), null, Textures.GUI_TELEPORT); this.pipe = pipe; container = (ContainerTeleportPipe) inventorySlots; xSize = 228; @@ -172,15 +172,6 @@ protected void actionPerformed(GuiButton guibutton) { PacketDispatcher.sendPacketToServer(packet.makePacket()); } - @Override - protected void drawGuiContainerBackgroundLayer(float f, int x, int y) { - GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F); - mc.renderEngine.bindTexture(Textures.GUI_TELEPORT); - int j = (width - xSize) / 2; - int k = (height - ySize) / 2; - drawTexturedModalRect(j, k, 0, 0, xSize, ySize); - } - @Override protected void initLedgers(IInventory inventory) { super.initLedgers(inventory);