mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 09:19:38 +01:00
c169c4a685
Pointed out by Andi in Spigot #53
52 lines
2.2 KiB
Diff
52 lines
2.2 KiB
Diff
From 71cd35a1527593f3c82c7461ce9552af19e3018a Mon Sep 17 00:00:00 2001
|
|
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
|
|
index e4725b0..20b945c 100644
|
|
--- a/src/main/java/net/minecraft/server/Chunk.java
|
|
+++ b/src/main/java/net/minecraft/server/Chunk.java
|
|
@@ -967,7 +967,7 @@ public class Chunk {
|
|
}
|
|
|
|
this.q = true;
|
|
- 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
|
|
this.o();
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
|
|
index ca04f24..ffbb05d 100644
|
|
--- a/src/main/java/net/minecraft/server/WorldServer.java
|
|
+++ b/src/main/java/net/minecraft/server/WorldServer.java
|
|
@@ -374,7 +374,7 @@ public class WorldServer extends World implements IAsyncTaskHandler {
|
|
|
|
protected void i() {
|
|
this.methodProfiler.a("playerCheckLight");
|
|
- if (!this.players.isEmpty()) {
|
|
+ if (spigotConfig.randomLightUpdates && !this.players.isEmpty()) { // Spigot
|
|
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;
|
|
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
index 4de0a98..c2452d6 100644
|
|
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
@@ -177,4 +177,11 @@ public class SpigotWorldConfig
|
|
hopperAmount = getInt( "hopper-amount", 1 );
|
|
log( "Hopper Transfer: " + hopperTransfer + " Hopper Check: " + hopperCheck + " Hopper Amount: " + hopperAmount );
|
|
}
|
|
+
|
|
+ public boolean randomLightUpdates;
|
|
+ private void lightUpdates()
|
|
+ {
|
|
+ randomLightUpdates = getBoolean( "random-light-updates", false );
|
|
+ log( "Random Lighting Updates: " + randomLightUpdates );
|
|
+ }
|
|
}
|
|
--
|
|
2.5.0
|
|
|