[Bleeding] Fix NPE in getBedSpawnLocation. Fixes BUKKIT-1949

By: EdGruberman <ed@rjump.com>
This commit is contained in:
CraftBukkit/Spigot 2012-07-24 21:23:33 -07:00
parent 7555571424
commit 19171265b9

View File

@ -198,6 +198,8 @@ public class CraftOfflinePlayer implements OfflinePlayer, ConfigurationSerializa
public Location getBedSpawnLocation() {
NBTTagCompound data = getData();
if (data == null) return null;
if (data.hasKey("SpawnX") && data.hasKey("SpawnY") && data.hasKey("SpawnZ")) {
String spawnWorld = data.getString("SpawnWorld");
if (spawnWorld.equals("")) {