mirror of
https://github.com/PaperMC/Paper.git
synced 2025-09-01 21:03:52 -07:00
Fix NPE when getting bed spawn location.
This commit is contained in:
@@ -610,7 +610,7 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
|
|||||||
World world = getServer().getWorld(getHandle().spawnWorld);
|
World world = getServer().getWorld(getHandle().spawnWorld);
|
||||||
ChunkCoordinates bed = getHandle().getBed();
|
ChunkCoordinates bed = getHandle().getBed();
|
||||||
|
|
||||||
if (world != null) {
|
if (world != null && bed != null) {
|
||||||
bed = EntityHuman.getBed(((CraftWorld) world).getHandle(), bed, getHandle().isRespawnForced());
|
bed = EntityHuman.getBed(((CraftWorld) world).getHandle(), bed, getHandle().isRespawnForced());
|
||||||
if (bed != null) {
|
if (bed != null) {
|
||||||
return new Location(world, bed.x, bed.y, bed.z);
|
return new Location(world, bed.x, bed.y, bed.z);
|
||||||
|
Reference in New Issue
Block a user