diff --git a/VelocityCore/src/de/steamwar/velocitycore/commands/WhoisCommand.java b/VelocityCore/src/de/steamwar/velocitycore/commands/WhoisCommand.java index 4d096b3f..d6a81f61 100644 --- a/VelocityCore/src/de/steamwar/velocitycore/commands/WhoisCommand.java +++ b/VelocityCore/src/de/steamwar/velocitycore/commands/WhoisCommand.java @@ -50,7 +50,7 @@ public class WhoisCommand extends SWCommand { @Register(description = "WHOIS_USAGE") public void whois(Chatter sender, long id, WhoisParameterTypes... parameters) { - if(!sender.user().hasPerm(UserPerm.ADMINISTRATION)) { + if(!sender.user().hasPerm(UserPerm.ADMINISTRATION) && !sender.user().hasPerm(UserPerm.PREFIX_DEVELOPER)) { sender.system("UNKNOWN_PLAYER"); return; }