Increase join event priority

This commit is contained in:
2023-01-11 23:11:05 +08:00
parent ec347e2eab
commit 8202428564

View File

@ -103,7 +103,7 @@ public final class OpenChatPlugin extends Plugin {
public void onEnable() {
// Register event listeners.
new EventHandler<>(PlayerJoinEvent.class)
.priority(HandlerPriority.LOW)
.priority(HandlerPriority.NORMAL)
.listener(EventListeners::onJoin)
.register(this);