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