()
| 304 | } |
| 305 | |
| 306 | private bdb getChatField() { |
| 307 | bec chatGUI = (bec) getMinecraftScreen(); |
| 308 | bdb chatField; |
| 309 | if (Transformer.FORGE) { |
| 310 | try { |
| 311 | chatField = (bdb) forgeChatField.get(chatGUI); |
| 312 | } catch (Exception e) { |
| 313 | throw new RuntimeException(e); |
| 314 | } |
| 315 | } else { |
| 316 | chatField = chatGUI.a; |
| 317 | } |
| 318 | return chatField; |
| 319 | } |
| 320 | |
| 321 | @Override |
| 322 | public Object getChatComponentWithPrefix(String prefix, Object originalChatComponent) { |
no test coverage detected