2018-08-26 20:11:49 +02:00
|
|
|
From 4faf295c8925f103c186ca0a838540d4c658c75a Mon Sep 17 00:00:00 2001
|
2016-03-29 02:47:46 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 28 Mar 2016 20:46:14 -0400
|
|
|
|
Subject: [PATCH] Configurable Chunk Inhabited Timer
|
|
|
|
|
|
|
|
Vanilla stores how long a chunk has been active on a server, and dynamically scales some
|
|
|
|
aspects of vanilla gameplay to this factor.
|
|
|
|
|
|
|
|
For people who want all chunks to be treated equally, you can disable the timer.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-08-26 20:11:49 +02:00
|
|
|
index 5f3156af60..f62faf81e7 100644
|
2016-03-29 02:47:46 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-08-26 20:11:49 +02:00
|
|
|
@@ -225,4 +225,9 @@ public class PaperWorldConfig {
|
2016-03-29 02:47:46 +02:00
|
|
|
private void firePhysicsEventForRedstone() {
|
|
|
|
firePhysicsEventForRedstone = getBoolean("fire-physics-event-for-redstone", firePhysicsEventForRedstone);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean useInhabitedTime = true;
|
|
|
|
+ private void useInhabitedTime() {
|
|
|
|
+ useInhabitedTime = getBoolean("use-chunk-inhabited-timer", true);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Chunk.java b/src/main/java/net/minecraft/server/Chunk.java
|
2018-08-26 20:11:49 +02:00
|
|
|
index 30dc4fb6df..0ef1a8c7d3 100644
|
2016-03-29 02:47:46 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Chunk.java
|
2018-08-26 20:11:49 +02:00
|
|
|
@@ -1239,7 +1239,7 @@ public class Chunk implements IChunkAccess {
|
2016-03-29 02:47:46 +02:00
|
|
|
}
|
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
public long m() {
|
2018-08-26 20:11:49 +02:00
|
|
|
- return this.z;
|
|
|
|
+ return world.paperConfig.useInhabitedTime ? this.z : 0; // Paper
|
2016-03-29 02:47:46 +02:00
|
|
|
}
|
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
public void b(long i) {
|
2016-03-29 02:47:46 +02:00
|
|
|
--
|
2018-07-04 09:55:24 +02:00
|
|
|
2.18.0
|
2016-03-29 02:47:46 +02:00
|
|
|
|