Skip to content

Commit

Permalink
unbind unuse keybind by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexdoru committed Feb 3, 2023
1 parent 4c97e52 commit ec8bfdf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit ec8bfdf

Please sign in to comment.