mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-04-26 08:29:44 +00:00
Check the player we are bringing has permission to enter the world vs the initiating user
This commit is contained in:
parent
ab7a19b6e6
commit
1d92cb0e0a
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ public class Commandtpohere extends EssentialsCommand
|
|||
}
|
||||
|
||||
if (user.getWorld() != player.getWorld() && ess.getSettings().isWorldTeleportPermissions()
|
||||
&& !user.isAuthorized("essentials.world." + user.getWorld().getName()))
|
||||
&& !player.isAuthorized("essentials.world." + user.getWorld().getName()))
|
||||
{
|
||||
throw new Exception(_("noPerm", "essentials.world." + user.getWorld().getName()));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue