2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2020-03-31 11:38:18 +02:00
|
|
|
From: 2277 <38501234+2277@users.noreply.github.com>
|
|
|
|
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/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2020-11-03 03:22:15 +01:00
|
|
|
index dc9b371af6c21510e9efba31ad462968aab49153..5bec3b9692f64a792e26f89b4147644eaaf4ab11 100644
|
2020-03-31 11:38:18 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2020-11-03 03:22:15 +01:00
|
|
|
@@ -1719,9 +1719,11 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
|
2020-03-31 11:38:18 +02:00
|
|
|
bworld = server.getWorld(worldName);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (bworld == null) {
|
2020-06-26 03:53:21 +02:00
|
|
|
- bworld = ((org.bukkit.craftbukkit.CraftServer) server).getServer().getWorldServer(World.OVERWORLD).getWorld();
|
2020-03-31 11:38:18 +02:00
|
|
|
- }
|
|
|
|
+ // Paper start - Move player to spawn point if spawn in unloaded world
|
2020-06-26 03:53:21 +02:00
|
|
|
+// 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
|
2020-03-31 11:38:18 +02:00
|
|
|
|
|
|
|
spawnIn(bworld == null ? null : ((CraftWorld) bworld).getHandle());
|
|
|
|
}
|