summaryrefslogtreecommitdiffstats
path: root/EssentialsSpawn
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-11-27 06:00:58 +0100
committersnowleo <schneeleo@gmail.com>2011-11-27 06:01:41 +0100
commitf250a107e4b9cbfbe6e3cb04ddd89c91f91908d2 (patch)
treea1278f7dd7e525c6a992f5e6561252eec24469ec /EssentialsSpawn
parentd5c852b79dd2aa1aac78bf2d57800456294b0b6c (diff)
downloadEssentials-f250a107e4b9cbfbe6e3cb04ddd89c91f91908d2.tar
Essentials-f250a107e4b9cbfbe6e3cb04ddd89c91f91908d2.tar.gz
Essentials-f250a107e4b9cbfbe6e3cb04ddd89c91f91908d2.tar.lz
Essentials-f250a107e4b9cbfbe6e3cb04ddd89c91f91908d2.tar.xz
Essentials-f250a107e4b9cbfbe6e3cb04ddd89c91f91908d2.zip
CB#1518 B#1042
Support for Enchantments & Removed broken BedFix (in cb now)
Diffstat (limited to 'EssentialsSpawn')
-rw-r--r--EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawnPlayerListener.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawnPlayerListener.java b/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawnPlayerListener.java
index a14f8bb71..57b842c82 100644
--- a/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawnPlayerListener.java
+++ b/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawnPlayerListener.java
@@ -3,7 +3,6 @@ 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;
@@ -32,7 +31,7 @@ public class EssentialsSpawnPlayerListener extends PlayerListener
Location home = user.getHome(user.getLocation());
if (home == null)
{
- home = BedLocationFix.getBedSpawnLocation(user);
+ home = user.getBedSpawnLocation();
}
if (home != null)
{
@@ -52,7 +51,7 @@ public class EssentialsSpawnPlayerListener extends PlayerListener
{
final User user = ess.getUser(event.getPlayer());
- if (!user.isNew() || BedLocationFix.getBedSpawnLocation(user) != null)
+ if (!user.isNew() || user.getBedSpawnLocation() != null)
{
return;
}