mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-08-03 19:15:44 +00:00
New permission check: essentials.list.hidden is now required to /getpos hidden players.
This commit is contained in:
parent
a8cbb5c8f5
commit
7ca2b65c4f
1 changed files with 10 additions and 8 deletions
|
@ -19,12 +19,14 @@ public class Commandgetpos extends EssentialsCommand
|
||||||
if (args.length > 0 && user.isAuthorized("essentials.getpos.others"))
|
if (args.length > 0 && user.isAuthorized("essentials.getpos.others"))
|
||||||
{
|
{
|
||||||
final User otherUser = getPlayer(server, args, 0);
|
final User otherUser = getPlayer(server, args, 0);
|
||||||
outputPosition(user, otherUser.getLocation(), user.getLocation());
|
if (!otherUser.isHidden() || user.isAuthorized("essentials.list.hidden"))
|
||||||
}
|
{
|
||||||
else
|
outputPosition(user, otherUser.getLocation(), user.getLocation());
|
||||||
{
|
return;
|
||||||
outputPosition(user, user.getLocation(), null);
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
outputPosition(user, user.getLocation(), null);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue