mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Remove logging
This commit is contained in:
parent
2fd270131f
commit
20cdfa4822
1 changed files with 0 additions and 2 deletions
|
@ -55,11 +55,9 @@ public class KeyBindingsHandler {
|
||||||
|
|
||||||
if (i.isPressed()) {
|
if (i.isPressed()) {
|
||||||
if (pressed.add(i)) {
|
if (pressed.add(i)) {
|
||||||
System.out.println("Key down " + slot);
|
|
||||||
iplayer.getAbilities().activate(slot);
|
iplayer.getAbilities().activate(slot);
|
||||||
}
|
}
|
||||||
} else if (pressed.remove(i)) {
|
} else if (pressed.remove(i)) {
|
||||||
System.out.println("Key up " + slot);
|
|
||||||
iplayer.getAbilities().clear(slot);
|
iplayer.getAbilities().clear(slot);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue