Paper/Spigot-Server-Patches/0015-Allow-for-toggling-of-spawn-chunks.patch

37 lines
1.7 KiB
Diff
Raw Normal View History

From 0feb10fd547e0c8bc4a33f5de32b39b1a032f528 Mon Sep 17 00:00:00 2001
2016-03-03 09:46:26 +00:00
From: Zach Brown <zach.brown@destroystokyo.com>
Date: Thu, 3 Mar 2016 03:53:43 -0600
2016-02-29 23:09:49 +00:00
Subject: [PATCH] Allow for toggling of spawn chunks
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
index c1103bb8f..625e75f93 100644
2016-02-29 23:09:49 +00:00
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
@@ -113,4 +113,10 @@ public class PaperWorldConfig {
2016-02-29 23:09:49 +00:00
softDespawnDistance = softDespawnDistance*softDespawnDistance;
hardDespawnDistance = hardDespawnDistance*hardDespawnDistance;
}
+
+ public boolean keepSpawnInMemory;
+ private void keepSpawnInMemory() {
+ keepSpawnInMemory = getBoolean("keep-spawn-loaded", true);
+ log("Keep spawn chunk loaded: " + keepSpawnInMemory);
+ }
}
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
index 67cfcdd60..864d0dd00 100644
2016-02-29 23:09:49 +00:00
--- a/src/main/java/net/minecraft/server/World.java
+++ b/src/main/java/net/minecraft/server/World.java
2019-04-24 01:00:24 +00:00
@@ -152,6 +152,7 @@ public abstract class World implements IIBlockAccess, GeneratorAccess, AutoClose
});
2016-03-03 09:46:26 +00:00
// CraftBukkit end
2016-03-25 04:59:37 +00:00
timings = new co.aikar.timings.WorldTimingsHandler(this); // Paper - code below can generate new world and access timings
2016-02-29 23:09:49 +00:00
+ this.keepSpawnInMemory = this.paperConfig.keepSpawnInMemory; // Paper
2019-04-24 01:00:24 +00:00
this.entityLimiter = new org.spigotmc.TickLimiter(spigotConfig.entityMaxTickTime);
2016-02-29 23:09:49 +00:00
this.tileLimiter = new org.spigotmc.TickLimiter(spigotConfig.tileMaxTickTime);
2016-03-25 04:59:37 +00:00
}
2016-02-29 23:09:49 +00:00
--
2.23.0
2016-02-29 23:09:49 +00:00