()
| 1026 | } |
| 1027 | |
| 1028 | @Override |
| 1029 | public String[] getHotbarKeys() { |
| 1030 | String[] result = new String[9]; |
| 1031 | cfe[] hotbarBindings = getGameSettings().at; |
| 1032 | for (int i = 0; i < Math.min(result.length, hotbarBindings.length); i++) { |
| 1033 | result[i] = hotbarBindings[i].j(); |
| 1034 | } |
| 1035 | return result; |
| 1036 | } |
| 1037 | |
| 1038 | @Override |
| 1039 | public String getKeyDisplayStringShort(int key) { |
nothing calls this directly
no test coverage detected