fix wireless terminals not opening again

This commit is contained in:
PrototypeTrousers
2023-02-06 13:27:52 -03:00
parent 15dff5d53d
commit 51522019ca
3 changed files with 22 additions and 17 deletions
@@ -363,7 +363,7 @@ public enum GuiBridge implements IGuiHandler {
} else if (x >= 0 && x < player.inventory.mainInventory.size()) {
it = player.inventory.getStackInSlot(x);
}
} else if (y == 1 && z == 0) {
} else if (y == 1 && z == Integer.MIN_VALUE) {
if (stem) {
if (player.openContainer instanceof IInventorySlotAware) {
int slot = ((IInventorySlotAware) player.openContainer).getInventorySlot();
@@ -32,16 +32,17 @@ public class PacketTerminalUse extends AppEngPacket {
@Override
public void serverPacketData(INetworkInfo manager, AppEngPacket packet, EntityPlayer player) {
NonNullList<ItemStack> mainInventory = player.inventory.mainInventory;
for (ItemStack is : mainInventory) {
for (int i = 0; i < mainInventory.size(); i++) {
ItemStack is = mainInventory.get(i);
if (terminal.getItemDefinition().isSameAs(is)) {
Platform.openGUI(player, null, AEPartLocation.INTERNAL, terminal.getBridge());
Platform.openGUI(player, i, terminal.getBridge(), false);
return;
}
}
for (int i = 0; i < BaublesApi.getBaublesHandler(player).getSlots(); i++) {
ItemStack is = BaublesApi.getBaublesHandler(player).getStackInSlot(i);
if (terminal.getItemDefinition().isSameAs(is)) {
Platform.openGUI(player, null, AEPartLocation.INTERNAL, terminal.getBridge());
Platform.openGUI(player, i, terminal.getBridge(), true);
break;
}
}