Adjust listener priority to correctly catch VentureChat QuickChat messages. #13

This commit is contained in:
Chris Naude 2016-02-27 19:41:56 -07:00
parent e2ad1f501a
commit d290a818ef

View File

@ -46,7 +46,7 @@ public class GamePlayerChatListener implements Listener {
*
* @param event
*/
@EventHandler(priority = EventPriority.MONITOR)
@EventHandler(priority = EventPriority.HIGHEST)
public void onAsyncPlayerChat(AsyncPlayerChatEvent event) {
String message = event.getMessage();
plugin.logDebug("ChatFormat [" + event.isCancelled() + "]: " + event.getFormat());