Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
xzxADIxzx committed Sep 14, 2021
1 parent 44cbf97 commit 7169cbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/game/SchemeSize.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public SchemeSize(){
KeyBind[] origi = (KeyBind[])Binding.values();
KeyBind[] moded = (KeyBind[])ModBinding.values();
KeyBind[] binds = new KeyBind[origi.length + moded.length];
System.arraycopy(origi, 0, outpt, 0, origi.length);
System.arraycopy(moded, 0, outpt, origi.length, moded.length);
System.arraycopy(origi, 0, binds, 0, origi.length);
System.arraycopy(moded, 0, binds, origi.length, moded.length);
Core.keybinds.setDefaults(binds);
Vars.ui.controls = new KeybindDialog(); // Update dialog

Expand Down

0 comments on commit 7169cbc

Please sign in to comment.