New permission check: essentials.list.hidden is now required to /getpos hidden players.

This commit is contained in:
KHobbits 2012-03-24 21:07:49 +00:00
parent a8cbb5c8f5
commit 7ca2b65c4f

View File

@ -19,12 +19,14 @@ public class Commandgetpos extends EssentialsCommand
if (args.length > 0 && user.isAuthorized("essentials.getpos.others"))
{
final User otherUser = getPlayer(server, args, 0);
outputPosition(user, otherUser.getLocation(), user.getLocation());
}
else
{
outputPosition(user, user.getLocation(), null);
if (!otherUser.isHidden() || user.isAuthorized("essentials.list.hidden"))
{
outputPosition(user, otherUser.getLocation(), user.getLocation());
return;
}
}
outputPosition(user, user.getLocation(), null);
}
@Override