2017-03-15 20:51:00 +11:00
From cc1f9b92dc118b36a075c78e8e0c1fa3fa75be89 Mon Sep 17 00:00:00 2001
2014-04-12 14:18:37 +10:00
From: md_5 <md_5@live.com.au>
Date: Sat, 22 Jun 2013 16:12:02 +1000
Subject: [PATCH] Allow Disabling of Random Lighting Updates
diff --git a/src/main/java/net/minecraft/server/Chunk.java b/src/main/java/net/minecraft/server/Chunk.java
2016-11-17 12:41:12 +11:00
index ee898dd..fab61ea 100644
2014-04-12 14:18:37 +10:00
--- a/src/main/java/net/minecraft/server/Chunk.java
+++ b/src/main/java/net/minecraft/server/Chunk.java
2016-06-23 10:37:05 +10:00
@@ -1001,7 +1001,7 @@ public class Chunk {
2014-04-12 14:18:37 +10:00
}
2016-05-10 21:48:25 +10:00
this.r = true;
2014-04-12 14:18:37 +10:00
- if (!this.lit && this.done) {
+ if (!this.lit && this.done && this.world.spigotConfig.randomLightUpdates) { // Spigot - also use random light updates setting to determine if we should relight
2016-03-01 08:33:06 +11:00
this.o();
2014-04-12 14:18:37 +10:00
}
2014-11-26 08:27:08 +11:00
2016-03-01 08:33:06 +11:00
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
2017-01-20 10:15:52 +11:00
index 0990ddb..06c2733 100644
2016-03-01 08:33:06 +11:00
--- a/src/main/java/net/minecraft/server/WorldServer.java
+++ b/src/main/java/net/minecraft/server/WorldServer.java
2017-01-20 10:15:52 +11:00
@@ -384,7 +384,7 @@ public class WorldServer extends World implements IAsyncTaskHandler {
2014-04-12 14:18:37 +10:00
2016-03-01 08:33:06 +11:00
protected void i() {
2014-04-12 14:18:37 +10:00
this.methodProfiler.a("playerCheckLight");
- if (!this.players.isEmpty()) {
+ if (spigotConfig.randomLightUpdates && !this.players.isEmpty()) { // Spigot
2016-03-01 08:33:06 +11:00
int i = this.random.nextInt(this.players.size());
EntityHuman entityhuman = (EntityHuman) this.players.get(i);
int j = MathHelper.floor(entityhuman.locX) + this.random.nextInt(11) - 5;
2014-04-12 14:18:37 +10:00
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
2017-02-10 15:59:57 +11:00
index 2847bbf..0202eeb 100644
2014-04-12 14:18:37 +10:00
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
2017-02-10 15:59:57 +11:00
@@ -182,4 +182,11 @@ public class SpigotWorldConfig
2014-04-19 09:22:44 +10:00
hopperAmount = getInt( "hopper-amount", 1 );
log( "Hopper Transfer: " + hopperTransfer + " Hopper Check: " + hopperCheck + " Hopper Amount: " + hopperAmount );
2014-04-12 14:18:37 +10:00
}
+
+ public boolean randomLightUpdates;
+ private void lightUpdates()
+ {
+ randomLightUpdates = getBoolean( "random-light-updates", false );
+ log( "Random Lighting Updates: " + randomLightUpdates );
+ }
}
--
2016-10-25 21:46:50 +11:00
2.9.3
2014-04-12 14:18:37 +10:00