Fix tp permissions check to check player typing command not teleportee.

If you don't want players inviting players to other worlds, do not give them essentials.world.<currentworld>
This commit is contained in:
KHobbits 2012-08-08 22:50:54 +01:00
parent 8e50158af8
commit dd12e5db66
5 changed files with 5 additions and 5 deletions

View file

@ -43,7 +43,7 @@ public class Commandtpall extends EssentialsCommand
continue;
}
if (user.getWorld() != player.getWorld() && ess.getSettings().isWorldTeleportPermissions()
&& !player.isAuthorized("essentials.world." + user.getWorld().getName()))
&& !user.isAuthorized("essentials.world." + user.getWorld().getName()))
{
continue;
}