Skip to content

Commit

Permalink
Merge pull request #10 from GTNewHorizons/keybind
Browse files Browse the repository at this point in the history
unbind unuse keybind by default
  • Loading branch information
Dream-Master authored Feb 4, 2023
2 parents 4c97e52 + ec8bfdf commit c529780
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 c529780

Please sign in to comment.