()
| 329 | } |
| 330 | |
| 331 | private bul getChatField() { |
| 332 | bvx chatGUI = (bvx) getMinecraftScreen(); |
| 333 | bul chatField; |
| 334 | if (Transformer.FORGE) { |
| 335 | try { |
| 336 | chatField = (bul) forgeChatField.get(chatGUI); |
| 337 | } catch (Exception e) { |
| 338 | throw new RuntimeException(e); |
| 339 | } |
| 340 | } else { |
| 341 | chatField = chatGUI.a; |
| 342 | } |
| 343 | return chatField; |
| 344 | } |
| 345 | |
| 346 | @Override |
| 347 | public Object getChatComponentWithPrefix(String prefix, Object originalChatComponent) { |
no test coverage detected