If bed home is set, give priority when spawning.

This commit is contained in:
KHobbits 2012-01-28 00:57:08 +00:00
parent f7c6759433
commit d1d31e9769

View File

@ -34,15 +34,15 @@ public class EssentialsSpawnPlayerListener implements Listener
if (ess.getSettings().getRespawnAtHome()) if (ess.getSettings().getRespawnAtHome())
{ {
Location home = user.getHome(user.getLocation()); Location home;
if (home == null) final Location bed = user.getBedSpawnLocation();
if (bed != null && bed.getBlock().getType() == Material.BED_BLOCK)
{ {
final Location bed = user.getBedSpawnLocation(); home = bed;
if (bed.getBlock().getType() == Material.BED_BLOCK) }
{ else
home = bed; {
} home = user.getHome(user.getLocation());
} }
if (home != null) if (home != null)
{ {