mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 05:47:45 +01:00
Revert "Update spawn chunk persistence patch"
This reverts commit bb2f77109f
.
This commit is contained in:
parent
bb2f77109f
commit
060423df62
@ -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 for the toggling of persistent spawn chunks
|
||||
Subject: [PATCH] Allow disabling of spawn chunks always being loaded
|
||||
|
||||
|
||||
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
||||
@ -9,17 +9,14 @@ 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
|
Loading…
Reference in New Issue
Block a user