diff --git a/Plugins/Mineplex.Hub/src/mineplex/hub/commands/DisguiseCommand.java b/Plugins/Mineplex.Hub/src/mineplex/hub/commands/DisguiseCommand.java index 0b8e0e3c4..ba585ac7b 100644 --- a/Plugins/Mineplex.Hub/src/mineplex/hub/commands/DisguiseCommand.java +++ b/Plugins/Mineplex.Hub/src/mineplex/hub/commands/DisguiseCommand.java @@ -145,7 +145,7 @@ public class DisguiseCommand extends CommandBase implements Listener Plugin.GetClients().LoadClient(other, uuid, caller.getAddress().getAddress().getAddress().toString()); Rank otherRank = other.GetRank(); - if(otherRank.Has(Rank.HELPER)) + if(otherRank.Has(Rank.TWITCH)) { UtilPlayer.message(caller, C.cRed + C.Bold + "You can't disguise as staff!"); _disguisedPlayers.remove(caller); diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/command/DisguiseCommand.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/command/DisguiseCommand.java index 9a488e240..d00a5bd46 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/command/DisguiseCommand.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/command/DisguiseCommand.java @@ -141,7 +141,7 @@ public class DisguiseCommand extends CommandBase implements Liste Plugin.GetClients().LoadClient(other, uuid, caller.getAddress().getAddress().getAddress().toString()); Rank otherRank = other.GetRank(); - if(otherRank.Has(Rank.HELPER)) + if(otherRank.Has(Rank.TWITCH)) { UtilPlayer.message(caller, C.cRed + C.Bold + "You can't disguise as staff!"); _disguisedPlayers.remove(caller);