1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-10-01 08:36:48 +02:00

Make looping commands see vanished players properly

Make /r check player existence in the correct order
This commit is contained in:
Chris Ward
2013-10-19 19:06:42 +11:00
committed by KHobbits
parent e25e02d154
commit 97d176ea27
2 changed files with 3 additions and 2 deletions

View File

@@ -116,7 +116,7 @@ public abstract class EssentialsLoopCommand extends EssentialsCommand
}
else
{
final User player = getPlayer(server, searchTerm, skipHidden, false);
final User player = getPlayer(server, searchTerm, !skipHidden, false);
updatePlayer(server, sender, player, commandArgs);
}
}