Change chat listener priority
https://github.com/DevLeoko/AdvancedBan/blob/70eba20d9c0a86d02e5c86d2ed89f59ce86a1683/bukkit/src/main/java/me/leoko/advancedban/bukkit/listener/ChatListener.java#L13 I have a plugin that listens to the ChatEvent at LOW, sends the player message to an alternative chat and cancels the event. So this HIGHEST priority of AdvancedBan has no effect because it will run after my plugin's listener. Solutions:
- Add another listener at LOWEST
- Change the current one to LOWEST
This has been mentioned in the context of other discussions too.
The priority should be configurable so that savvy users can orchestrate their plugins properly.
That's definitely a better solution.
Still nothing?