(List<IKeybinding> keybindings)
| 365 | } |
| 366 | |
| 367 | @Override |
| 368 | public void registerKeybindings(List<IKeybinding> keybindings) { |
| 369 | avb[] currentKeybindings = getGameSettings().aw; |
| 370 | avb[] customKeybindings = new avb[keybindings.size()]; |
| 371 | for (int i = 0; i < keybindings.size(); i++) { |
| 372 | customKeybindings[i] = (avb) keybindings.get(i); |
| 373 | } |
| 374 | getGameSettings().aw = Utils.concat(currentKeybindings, customKeybindings); |
| 375 | |
| 376 | getGameSettings().a(); |
| 377 | } |
| 378 | |
| 379 | @Override |
| 380 | public void playSound(String sound, float pitch) { |
nothing calls this directly
no test coverage detected