From d6f3b5e44f508d9951c67d56be8e52e8d74d7925 Mon Sep 17 00:00:00 2001 From: Shane Freeder Date: Tue, 25 Aug 2020 13:30:52 +0100 Subject: [PATCH] Remove debug Today is going to be a long day --- Spigot-Server-Patches/Buffer-joins-to-world.patch | 1 - 1 file changed, 1 deletion(-) diff --git a/Spigot-Server-Patches/Buffer-joins-to-world.patch b/Spigot-Server-Patches/Buffer-joins-to-world.patch index 62db77169..e3a686667 100644 --- a/Spigot-Server-Patches/Buffer-joins-to-world.patch +++ b/Spigot-Server-Patches/Buffer-joins-to-world.patch @@ -43,7 +43,6 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 if (this.packetListener instanceof LoginListener) { + if ( ((LoginListener) this.packetListener).getLoginState() != LoginListener.EnumProtocolState.READY_TO_ACCEPT // Paper + || (joinAttemptsThisTick++ < MAX_PER_TICK)) { // Paper - limit the number of joins which can be processed each tick -+ System.out.println("tick " + joinAttemptsThisTick + "/" + MAX_PER_TICK); ((LoginListener) this.packetListener).tick(); + } // Paper }