mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-24 01:57:58 +01:00
Prevent EssSpawn trying to handle spawning of jailed players.
This commit is contained in:
parent
a5e3182dad
commit
340f0c68eb
@ -35,6 +35,11 @@ public class EssentialsSpawnPlayerListener implements Listener
|
||||
{
|
||||
final User user = ess.getUser(event.getPlayer());
|
||||
|
||||
if (user.isJailed() && user.getJail() != null && !user.getJail().isEmpty())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (ess.getSettings().getRespawnAtHome())
|
||||
{
|
||||
Location home;
|
||||
|
Loading…
Reference in New Issue
Block a user