1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-12 17:45:08 +02:00

Let Bukkit decide if a bedspawn is valid or not.

Bukkit's bed fix forces minimum bukkit change.
This commit is contained in:
KHobbits
2013-02-01 02:59:40 +00:00
parent 20b9111495
commit 705b193450
4 changed files with 4 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ public class EssentialsSpawnPlayerListener implements Listener
{
Location home;
final Location bed = user.getBedSpawnLocation();
if (bed != null && bed.getBlock().getType() == Material.BED_BLOCK)
if (bed != null)
{
home = bed;
}