You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 13, 2025. It is now read-only.
private static final int MAX_PER_TICK = io.papermc.paper.configuration.GlobalConfiguration.get().misc.maxJoinsPerTick; // Paper - Buffer joins to world
5
+
private static int joinAttemptsThisTick; // Paper - Buffer joins to world
6
+
private static int currTick; // Paper - Buffer joins to world
7
+
+ private static int tickSecond; // Purpur - Max joins per second
8
+
public void tick() {
9
+
this.flushQueue();
10
+
// Paper start - Buffer joins to world
11
+
if (Connection.currTick != net.minecraft.server.MinecraftServer.currentTick) {
0 commit comments