From 67d1ba7c1a4fa148af8c8ae2e9aff573d8e9dd99 Mon Sep 17 00:00:00 2001 From: Roman Alexander Date: Tue, 24 Mar 2015 18:28:19 -0500 Subject: [PATCH] How about we actually make that tickNextTickList cap configurable *glances at Z* --- Spigot-Server-Patches/Fix-redstone-lag-issues.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Spigot-Server-Patches/Fix-redstone-lag-issues.patch b/Spigot-Server-Patches/Fix-redstone-lag-issues.patch index d3fae572e6..d07a583aa3 100644 --- a/Spigot-Server-Patches/Fix-redstone-lag-issues.patch +++ b/Spigot-Server-Patches/Fix-redstone-lag-issues.patch @@ -49,7 +49,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + public int tickNextTickCap; + private void tickNextTickCap() + { -+ tickNextTickCap = 10000; // Higher values will be friendlier to vanilla style mechanics but may hurt performance ++ tickNextTickCap = getInt( "tick-next-tick-list-cap", 10000 ); // Higher values will be friendlier to vanilla style mechanics (to a point) but may hurt performance + log( "WorldServer TickNextTick cap set at " + tickNextTickCap ); + } }