()
| 950 | } |
| 951 | |
| 952 | @Override |
| 953 | public String[] getHotbarKeys() { |
| 954 | String[] result = new String[9]; |
| 955 | bcc[] hotbarBindings = getGameSettings().ak; |
| 956 | for (int i = 0; i < Math.min(result.length, hotbarBindings.length); i++) { |
| 957 | result[i] = getKeyDisplayStringShort(hotbarBindings[i].j()); |
| 958 | } |
| 959 | return result; |
| 960 | } |
| 961 | |
| 962 | @Override |
| 963 | public String getKeyDisplayStringShort(int key) { |
nothing calls this directly
no test coverage detected