From bef2ffc97f9f308beac5685c28fcf7283d2d4cfb Mon Sep 17 00:00:00 2001 From: Matthias Luger Date: Thu, 2 Nov 2023 17:41:41 +0100 Subject: use middle click for button remapping --- src/main/java/de/torui/coflsky/gui/bingui/BinGuiCurrent.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/de/torui/coflsky/gui/bingui') diff --git a/src/main/java/de/torui/coflsky/gui/bingui/BinGuiCurrent.java b/src/main/java/de/torui/coflsky/gui/bingui/BinGuiCurrent.java index e742ba0..d860fe3 100644 --- a/src/main/java/de/torui/coflsky/gui/bingui/BinGuiCurrent.java +++ b/src/main/java/de/torui/coflsky/gui/bingui/BinGuiCurrent.java @@ -146,12 +146,12 @@ public class BinGuiCurrent extends GuiChest { Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("[§1C§6oflnet§f]§7: §cBed is not purchasable yet.")); buyState = BuyState.INIT; } else { - mc.playerController.windowClick(this.chestGui.inventorySlots.windowId, 31, 0, 0, mc.thePlayer); + mc.playerController.windowClick(this.chestGui.inventorySlots.windowId, 31, 2, 3, mc.thePlayer); wasMouseDown = false; buyState = BuyState.CONFIRM; } } else if (guiName.equalsIgnoreCase("Confirm Purchase") && buyState == BuyState.BUYING) { - mc.playerController.windowClick(this.chestGui.inventorySlots.windowId, 11, 0, 0, mc.thePlayer); + mc.playerController.windowClick(this.chestGui.inventorySlots.windowId, 11, 2, 3, mc.thePlayer); resetGUI(); } } -- cgit