From ec8bfdfb8f3b0da648e947f6eff74124c8084368 Mon Sep 17 00:00:00 2001 From: Alexdoru <57050655+Alexdoru@users.noreply.github.com> Date: Fri, 3 Feb 2023 23:05:52 +0100 Subject: [PATCH] unbind unuse keybind by default --- .../com/darkona/adventurebackpack/config/Keybindings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/darkona/adventurebackpack/config/Keybindings.java b/src/main/java/com/darkona/adventurebackpack/config/Keybindings.java index c29c7514..5c0daf91 100644 --- a/src/main/java/com/darkona/adventurebackpack/config/Keybindings.java +++ b/src/main/java/com/darkona/adventurebackpack/config/Keybindings.java @@ -16,8 +16,8 @@ public class Keybindings { private static final String OPEN_INVENTORY = "keys.adventureBackpack.openInventory"; private static final String TOGGLE_ACTIONS = "keys.adventureBackpack.toggleActions"; - public static KeyBinding openInventory = new KeyBinding(OPEN_INVENTORY, Keyboard.KEY_B, KEYS_CATEGORY); - public static KeyBinding toggleActions = new KeyBinding(TOGGLE_ACTIONS, Keyboard.KEY_N, KEYS_CATEGORY); + public static KeyBinding openInventory = new KeyBinding(OPEN_INVENTORY, Keyboard.KEY_NONE, KEYS_CATEGORY); + public static KeyBinding toggleActions = new KeyBinding(TOGGLE_ACTIONS, Keyboard.KEY_NONE, KEYS_CATEGORY); public static String getInventoryKeyName() { return GameSettings.getKeyDisplayString(openInventory.getKeyCode());