1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-04-01 12:11:45 +02:00

Fix bug preventing non bed-reliant spawns from being successfully set. Fixes BUKKIT-2708

This commit is contained in:
EvilSeph 2012-10-29 04:32:20 -04:00
parent d16f8c5e65
commit 14f4bd9024

View file

@ -344,7 +344,7 @@ public abstract class ServerConfigurationManagerAbstract {
boolean isBedSpawn = false;
CraftWorld cworld = (CraftWorld) this.server.server.getWorld(entityplayer.spawnWorld);
if (cworld != null && chunkcoordinates != null) {
chunkcoordinates1 = EntityHuman.getBed(cworld.getHandle(), chunkcoordinates, flag);
chunkcoordinates1 = EntityHuman.getBed(cworld.getHandle(), chunkcoordinates, flag1);
if (chunkcoordinates1 != null) {
isBedSpawn = true;
location = new Location(cworld, chunkcoordinates1.x + 0.5, chunkcoordinates1.y, chunkcoordinates1.z + 0.5);