(int mouseX, int mouseY, int button)
| 255 | } |
| 256 | |
| 257 | @Override |
| 258 | public boolean mouseClicked(int mouseX, int mouseY, int button) { |
| 259 | try { |
| 260 | return button == 0 && (clickChatComponent != null ? (Boolean) clickChatComponent.invoke(MinecraftFactory.getVars().getMinecraftScreen(), |
| 261 | getChatComponent(mouseX, mouseY)) : ((civ) MinecraftFactory.getVars().getMinecraftScreen()).d(getChatComponent(mouseX, mouseY))); |
| 262 | } catch (Exception e) { |
| 263 | throw new RuntimeException(e); |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | @Override |
| 268 | public void keyTyped(int code) { |
nothing calls this directly
no test coverage detected