So I am trying to figure out how to use keybinds and when I use this code:
@SubscribeEvent(priority = EventPriority.NORMAL, receiveCanceled = true)
public static void keyPressForCustomGUI(InputEvent.KeyInputEvent event){
//For debug
System.out.println("Key Input Received");
int key = event.getKey();
if (key == 86){
//For Debug
System.out.println("The pressed key was " + key);
}
}
In my ClientEvents class I keep getting double outputs for each of the System.out.prinln s