diff --git a/platforms/velocity/src/main/java/us/ajg0702/queue/platforms/velocity/VelocityQueue.java b/platforms/velocity/src/main/java/us/ajg0702/queue/platforms/velocity/VelocityQueue.java index 0654575..37e4c47 100644 --- a/platforms/velocity/src/main/java/us/ajg0702/queue/platforms/velocity/VelocityQueue.java +++ b/platforms/velocity/src/main/java/us/ajg0702/queue/platforms/velocity/VelocityQueue.java @@ -118,7 +118,7 @@ public class VelocityQueue { @SuppressWarnings("UnstableApiUsage") @Subscribe public void onJoin(ServerPostConnectEvent e) { - if(e.getPreviousServer() != null) { // only run if the player just joined + if(e.getPreviousServer() == null) { // only run if the player just joined main.getEventHandler().onPlayerJoin(new VelocityPlayer(e.getPlayer())); } main.getEventHandler().onPlayerJoinServer(new VelocityPlayer(e.getPlayer()));