diff --git a/CraftBukkit-Patches/0023-Allow-disabling-of-spawn-chunks-always-being-loaded.patch b/CraftBukkit-Patches/0023-Allow-for-the-toggling-of-persistent-spawn-chunks.patch similarity index 87% rename from CraftBukkit-Patches/0023-Allow-disabling-of-spawn-chunks-always-being-loaded.patch rename to CraftBukkit-Patches/0023-Allow-for-the-toggling-of-persistent-spawn-chunks.patch index ebff62e51a..95dcb02f96 100644 --- a/CraftBukkit-Patches/0023-Allow-disabling-of-spawn-chunks-always-being-loaded.patch +++ b/CraftBukkit-Patches/0023-Allow-for-the-toggling-of-persistent-spawn-chunks.patch @@ -1,7 +1,7 @@ From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Dmck2b <itallhappenedverysuddenly@gmail.com> Date: Tue, 8 Jul 2014 23:55:29 +0100 -Subject: [PATCH] Allow disabling of spawn chunks always being loaded +Subject: [PATCH] Allow for the toggling of persistent spawn chunks diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java @@ -9,14 +9,17 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 --- a/src/main/java/net/minecraft/server/World.java +++ b/src/main/java/net/minecraft/server/World.java @@ -0,0 +0,0 @@ public abstract class World implements IBlockAccess { - this.B(); this.a(); -+ -+ this.keepSpawnInMemory = paperSpigotConfig.keepSpawnInMemory; ++ this.keepSpawnInMemory = paperSpigotConfig.keepSpawnInMemory; // PaperSpigot ++ this.getServer().addWorld(this.world); // CraftBukkit ++ ++ this.getWorld().setKeepSpawnInMemory(this.keepSpawnInMemory); // PaperSpigot } + + protected abstract IChunkProvider j(); diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 --- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java