Skip to content

Commit

Permalink
Merge pull request #48 from APRO-Project/fix/key-binds-change
Browse files Browse the repository at this point in the history
Swap switch item controls
  • Loading branch information
8ru73u5 authored Jun 15, 2020
2 parents 8204b12 + 704bd32 commit 32c7204
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/core/src/com/cyberbot/bomberman/models/KeyBinds.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ public class KeyBinds {
public int useItem = Input.Keys.SPACE;

// Inventory view
public int switchItemUp = Input.Keys.E;
public int switchItemDown = Input.Keys.Q;
public int switchItemUp = Input.Keys.Q;
public int switchItemDown = Input.Keys.E;
}

0 comments on commit 32c7204

Please sign in to comment.