mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 03:38:28 +00:00
If bed home is set, give priority when spawning.
This commit is contained in:
parent
f7c6759433
commit
d1d31e9769
1 changed files with 8 additions and 8 deletions
|
@ -34,15 +34,15 @@ public class EssentialsSpawnPlayerListener implements Listener
|
|||
|
||||
if (ess.getSettings().getRespawnAtHome())
|
||||
{
|
||||
Location home = user.getHome(user.getLocation());
|
||||
if (home == null)
|
||||
Location home;
|
||||
final Location bed = user.getBedSpawnLocation();
|
||||
if (bed != null && bed.getBlock().getType() == Material.BED_BLOCK)
|
||||
{
|
||||
final Location bed = user.getBedSpawnLocation();
|
||||
if (bed.getBlock().getType() == Material.BED_BLOCK)
|
||||
{
|
||||
home = bed;
|
||||
}
|
||||
|
||||
home = bed;
|
||||
}
|
||||
else
|
||||
{
|
||||
home = user.getHome(user.getLocation());
|
||||
}
|
||||
if (home != null)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue