From d5aa9d84e9166154f4bf9b0683e05b64cee9f46f Mon Sep 17 00:00:00 2001 From: snowleo Date: Sun, 27 Nov 2011 04:46:33 +0100 Subject: BedLocationFix for CraftBukkit --- .../com/earth2me/essentials/spawn/EssentialsSpawnPlayerListener.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'EssentialsSpawn') diff --git a/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawnPlayerListener.java b/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawnPlayerListener.java index 57b842c82..a14f8bb71 100644 --- a/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawnPlayerListener.java +++ b/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawnPlayerListener.java @@ -3,6 +3,7 @@ package com.earth2me.essentials.spawn; import static com.earth2me.essentials.I18n._; import com.earth2me.essentials.IEssentials; import com.earth2me.essentials.User; +import com.earth2me.essentials.craftbukkit.BedLocationFix; import java.util.logging.Level; import java.util.logging.Logger; import org.bukkit.Location; @@ -31,7 +32,7 @@ public class EssentialsSpawnPlayerListener extends PlayerListener Location home = user.getHome(user.getLocation()); if (home == null) { - home = user.getBedSpawnLocation(); + home = BedLocationFix.getBedSpawnLocation(user); } if (home != null) { @@ -51,7 +52,7 @@ public class EssentialsSpawnPlayerListener extends PlayerListener { final User user = ess.getUser(event.getPlayer()); - if (!user.isNew() || user.getBedSpawnLocation() != null) + if (!user.isNew() || BedLocationFix.getBedSpawnLocation(user) != null) { return; } -- cgit v1.2.3