()
| 340 | } |
| 341 | |
| 342 | private avw getChatField() { |
| 343 | awv chatGUI = (awv) getMinecraftScreen(); |
| 344 | avw chatField; |
| 345 | if (Transformer.FORGE) { |
| 346 | try { |
| 347 | chatField = (avw) forgeChatField.get(chatGUI); |
| 348 | } catch (Exception e) { |
| 349 | throw new RuntimeException(e); |
| 350 | } |
| 351 | } else { |
| 352 | chatField = chatGUI.a; |
| 353 | } |
| 354 | return chatField; |
| 355 | } |
| 356 | |
| 357 | @Override |
| 358 | public Object getChatComponentWithPrefix(String prefix, Object originalChatComponent) { |
no test coverage detected