aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0400-Move-player-to-spawn-point-if-spawn-in-unloaded-worl.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0400-Move-player-to-spawn-point-if-spawn-in-unloaded-worl.patch')
-rw-r--r--patches/server/0400-Move-player-to-spawn-point-if-spawn-in-unloaded-worl.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/patches/server/0400-Move-player-to-spawn-point-if-spawn-in-unloaded-worl.patch b/patches/server/0400-Move-player-to-spawn-point-if-spawn-in-unloaded-worl.patch
new file mode 100644
index 0000000000..bd671c5504
--- /dev/null
+++ b/patches/server/0400-Move-player-to-spawn-point-if-spawn-in-unloaded-worl.patch
@@ -0,0 +1,27 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: 2277 <[email protected]>
+Date: Tue, 31 Mar 2020 10:33:55 +0100
+Subject: [PATCH] Move player to spawn point if spawn in unloaded world
+
+The code following this has better support for null worlds to move
+them back to the world spawn.
+
+diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
+index a1f176432b366b5f106a32ca571d7ea617b19fd3..69aef07129201308ae275434b754977c6ece5dd7 100644
+--- a/src/main/java/net/minecraft/world/entity/Entity.java
++++ b/src/main/java/net/minecraft/world/entity/Entity.java
+@@ -2110,9 +2110,11 @@ public abstract class Entity implements Nameable, EntityAccess, CommandSource {
+ bworld = server.getWorld(worldName);
+ }
+
+- if (bworld == null) {
+- bworld = ((org.bukkit.craftbukkit.CraftServer) server).getServer().getLevel(Level.OVERWORLD).getWorld();
+- }
++ // Paper start - Move player to spawn point if spawn in unloaded world
++// if (bworld == null) {
++// bworld = ((org.bukkit.craftbukkit.CraftServer) server).getServer().getWorldServer(World.OVERWORLD).getWorld();
++// }
++ // Paper end - Move player to spawn point if spawn in unloaded world
+
+ ((ServerPlayer) this).setLevel(bworld == null ? null : ((CraftWorld) bworld).getHandle());
+ }