Superconductor update, adds cables, and new upgrades.

This commit is contained in:
modmuss50 2019-03-23 18:03:41 +00:00
parent 0ca18ade97
commit 1d78c60e51
21 changed files with 197 additions and 12 deletions

View file

@ -85,7 +85,8 @@ public class GuiAESU extends GuiBase {
super.actionPerformed(button);
if (button.id >= 300 && button.id <= 303) {
boolean shift = Keyboard.isKeyDown(Keyboard.KEY_LSHIFT);
NetworkManager.sendToServer(new PacketAesu(button.id, tile, shift));
boolean ctrl = Keyboard.isKeyDown(Keyboard.KEY_LCONTROL);
NetworkManager.sendToServer(new PacketAesu(button.id, tile, shift, ctrl));
}
}
}