Skip to content

Commit

Permalink
Merge pull request #79 from siede2010/patch-1
Browse files Browse the repository at this point in the history
Grabbing KeyBinds instead of defaultBinds
  • Loading branch information
xzxADIxzx authored Nov 16, 2024
2 parents 1267be2 + 5f0ca79 commit 2dd77de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/java/scheme/moded/ModedBinding.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public String category() {
}

public static void load() {
KeyBind[] orign = (KeyBind[]) Binding.values();
KeyBind[] orign = (KeyBind[]) keybinds.getKeybinds();
KeyBind[] moded = (KeyBind[]) values();
KeyBind[] binds = new KeyBind[orign.length + moded.length];

Expand All @@ -61,4 +61,4 @@ public static void load() {

Main.log("Mod keybinds loaded.");
}
}
}

0 comments on commit 2dd77de

Please # to comment.