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

37 lines
1.7 KiB
Diff
Raw Normal View History

2016-03-06 21:59:17 +01:00
From 5f57470879bc673989301bd8e3f055627f51feb5 Mon Sep 17 00:00:00 2001
2016-03-03 10:46:26 +01:00
From: Zach Brown <zach.brown@destroystokyo.com>
Date: Thu, 3 Mar 2016 03:53:43 -0600
2016-03-01 00:09:49 +01: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
2016-03-03 10:46:26 +01:00
index 375ac89..22d68af 100644
2016-03-01 00:09:49 +01:00
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
@@ -119,4 +119,10 @@ public class PaperWorldConfig {
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
2016-03-06 21:59:17 +01:00
index a482db9..39afaae 100644
2016-03-01 00:09:49 +01:00
--- a/src/main/java/net/minecraft/server/World.java
+++ b/src/main/java/net/minecraft/server/World.java
2016-03-06 21:59:17 +01:00
@@ -197,6 +197,7 @@ public abstract class World implements IBlockAccess {
});
2016-03-03 10:46:26 +01:00
this.getServer().addWorld(this.world);
// CraftBukkit end
2016-03-01 00:09:49 +01:00
+ this.keepSpawnInMemory = this.paperConfig.keepSpawnInMemory; // Paper
timings = new SpigotTimings.WorldTimingsHandler(this); // Spigot - code below can generate new world and access timings
this.entityLimiter = new org.spigotmc.TickLimiter(spigotConfig.entityMaxTickTime);
this.tileLimiter = new org.spigotmc.TickLimiter(spigotConfig.tileMaxTickTime);
--
2.7.2