From eed20ead01e9d8d3f8065ebbcfd7eb35b677ece2 Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Mon, 17 Feb 2014 20:44:13 -0600 Subject: [PATCH] Fix ClearTickList to return correct value Previously it always returned false, this fixes it to return whatever value the user has it set to. --- CraftBukkit-Patches/0005-Better-Chunk-Tick-Selection.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CraftBukkit-Patches/0005-Better-Chunk-Tick-Selection.patch b/CraftBukkit-Patches/0005-Better-Chunk-Tick-Selection.patch index b5be8bf999..c420ad0670 100644 --- a/CraftBukkit-Patches/0005-Better-Chunk-Tick-Selection.patch +++ b/CraftBukkit-Patches/0005-Better-Chunk-Tick-Selection.patch @@ -181,7 +181,7 @@ index 961ddb4..6ba7f5c 100644 + log( "Chunks to Grow per Tick: " + chunksPerTick ); + + clearChunksOnTick = getBoolean( "clear-tick-list", false ); -+ log( "Clear tick list: " + false ); ++ log( "Clear tick list: " + clearChunksOnTick ); + } } --