2017-03-25 06:22:02 +01:00
|
|
|
From 0ea1c20ebdf134e47efb6aceb915590929ed4b9d 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
|
2017-03-25 04:18:58 +01:00
|
|
|
index e706efff5..2c682ccf7 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
|
2017-03-25 04:18:58 +01:00
|
|
|
@@ -273,4 +273,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
|
2017-03-25 04:18:58 +01:00
|
|
|
index 736fa1f62..61d34fc37 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
|
2016-08-28 02:36:26 +02:00
|
|
|
@@ -1405,7 +1405,7 @@ public class Chunk {
|
2016-03-29 02:47:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public long x() {
|
2016-05-12 04:07:46 +02:00
|
|
|
- return this.w;
|
|
|
|
+ return world.paperConfig.useInhabitedTime ? this.w : 0; // Paper
|
2016-03-29 02:47:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void c(long i) {
|
|
|
|
--
|
2017-03-25 04:18:58 +01:00
|
|
|
2.12.0.windows.1
|
2016-03-29 02:47:46 +02:00
|
|
|
|