PaperMC/Spigot-Server-Patches/Fix-redstone-lag-issues.patch

30 lines
1.3 KiB
Diff
Raw Normal View History

2014-06-22 22:49:11 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Iceee <andrew@opticgaming.tv>
2014-11-28 02:17:45 +01:00
Date: Fri, 28 Nov 2014 01:21:27 -0600
2014-06-22 22:49:11 +02:00
Subject: [PATCH] Fix redstone lag issues
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
--- a/src/main/java/net/minecraft/server/WorldServer.java
+++ b/src/main/java/net/minecraft/server/WorldServer.java
2014-11-28 02:17:45 +01:00
@@ -0,0 +0,0 @@ public class WorldServer extends World implements IAsyncTaskHandler {
if (i != this.L.size()) {
throw new IllegalStateException("TickNextTick list out of synch");
} else {
+ // PaperSpigot start - Fix redstone lag issues
+ /*
if (i > 1000) {
// CraftBukkit start - If the server has too much to process over time, try to alleviate that
if (i > 20 * 1000) {
@@ -0,0 +0,0 @@ public class WorldServer extends World implements IAsyncTaskHandler {
i = 1000;
}
// CraftBukkit end
- }
+ } */
+ // PaperSpigot end
2014-06-22 22:49:11 +02:00
2014-11-28 02:17:45 +01:00
this.methodProfiler.a("cleaning");
2014-06-22 22:49:11 +02:00
--