(List<IKeybinding> keybindings)
| 354 | } |
| 355 | |
| 356 | @Override |
| 357 | public void registerKeybindings(List<IKeybinding> keybindings) { |
| 358 | bsr[] currentKeybindings = getGameSettings().at; |
| 359 | bsr[] customKeybindings = new bsr[keybindings.size()]; |
| 360 | for (int i = 0; i < keybindings.size(); i++) { |
| 361 | customKeybindings[i] = (bsr) keybindings.get(i); |
| 362 | } |
| 363 | getGameSettings().at = Utils.concat(currentKeybindings, customKeybindings); |
| 364 | |
| 365 | getGameSettings().a(); |
| 366 | } |
| 367 | |
| 368 | @Override |
| 369 | public void playSound(String sound, float pitch) { |
nothing calls this directly
no test coverage detected