(List<IKeybinding> keybindings)
| 329 | } |
| 330 | |
| 331 | @Override |
| 332 | public void registerKeybindings(List<IKeybinding> keybindings) { |
| 333 | bcc[] currentKeybindings = getGameSettings().al; |
| 334 | bcc[] customKeybindings = new bcc[keybindings.size()]; |
| 335 | for (int i = 0; i < keybindings.size(); i++) { |
| 336 | customKeybindings[i] = (bcc) keybindings.get(i); |
| 337 | } |
| 338 | getGameSettings().al = Utils.concat(currentKeybindings, customKeybindings); |
| 339 | |
| 340 | getGameSettings().a(); |
| 341 | } |
| 342 | |
| 343 | @Override |
| 344 | public void playSound(String sound, float pitch) { |
nothing calls this directly
no test coverage detected