2018-01-03 10:36:21 +11:00
From bf6c7e3c3ba193ec3c9eb90abc531b85b2df3fda 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
2017-09-18 20:00:00 +10:00
index 04183588b..fe511bfdf 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-09-18 20:00:00 +10:00
index 1e07fb296..4ea536637 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-06-11 12:14:41 +10:00
@@ -441,7 +441,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-09-18 20:00:00 +10:00
index 2847bbf3d..0202eeb8d 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 );
+ }
}
--
2017-11-17 10:24:35 +11:00
2.14.1
2014-04-12 14:18:37 +10:00