Possibly fix infinite adding player to a queue

This commit is contained in:
ajgeiss0702
2021-05-30 10:16:05 -07:00
parent 32bf5d3114
commit 8937f29ebf
+1
View File
@@ -243,6 +243,7 @@ public class Main extends Plugin implements Listener {
p.sendMessage(msgs.getBC("auto-queued", "SERVER:"+toName)); p.sendMessage(msgs.getBC("auto-queued", "SERVER:"+toName));
man.addToQueue(p, toName); man.addToQueue(p, toName);
}, (long) (config.getDouble("auto-add-to-queue-on-kick-delay")*1000), TimeUnit.MILLISECONDS); }, (long) (config.getDouble("auto-add-to-queue-on-kick-delay")*1000), TimeUnit.MILLISECONDS);
return;
} }
} }