From 081ec4b70a232e3172c5c57bb81099ef73fe3e0f Mon Sep 17 00:00:00 2001 From: LexManos Date: Tue, 25 Dec 2012 22:28:16 -0800 Subject: [PATCH] Fixed order <.< you saw nothing. --- patches/minecraft/net/minecraft/world/WorldServer.java.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/minecraft/net/minecraft/world/WorldServer.java.patch b/patches/minecraft/net/minecraft/world/WorldServer.java.patch index fbd9f8439..1272e9a66 100644 --- a/patches/minecraft/net/minecraft/world/WorldServer.java.patch +++ b/patches/minecraft/net/minecraft/world/WorldServer.java.patch @@ -91,7 +91,7 @@ this.theProfiler.endStartSection("tickChunk"); - var7.updateSkylight(); + //Limits and evenly distributes the lighting update time -+ if (startTime - System.nanoTime() <= 4000000 && doneChunks.add(var4)) ++ if (System.nanoTime() - startTime <= 4000000 && doneChunks.add(var4)) + { + var7.updateSkylight(); + }