From 4a5d6b5f2a6b36687cc5a9512be9760d38d9346e Mon Sep 17 00:00:00 2001 From: Sarah Date: Sun, 17 Jan 2016 02:48:15 +0100 Subject: [PATCH] Mysticates OCD.... --- .../core/disguise/PlayerDisguiseManager.java | 1 + .../game/arcade/command/DisguiseCommand.java | 17 +++++------------ 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/Plugins/Mineplex.Core/src/mineplex/core/disguise/PlayerDisguiseManager.java b/Plugins/Mineplex.Core/src/mineplex/core/disguise/PlayerDisguiseManager.java index d7a900895..82e27bb5f 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/disguise/PlayerDisguiseManager.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/disguise/PlayerDisguiseManager.java @@ -10,6 +10,7 @@ import mineplex.serverdata.redis.RedisDataRepository; import org.bukkit.Bukkit; import org.bukkit.ChatColor; import org.bukkit.event.EventHandler; +import org.bukkit.event.player.AsyncPlayerChatEvent; import org.bukkit.event.player.PlayerCommandPreprocessEvent; import org.bukkit.event.player.PlayerJoinEvent; import org.bukkit.event.player.PlayerQuitEvent; 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 8e164a323..d6a509845 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 @@ -19,6 +19,7 @@ import mineplex.core.disguise.disguises.DisguisePlayer; import mineplex.core.gadget.event.GadgetEnableEvent; import mineplex.core.gadget.types.GadgetType; import mineplex.core.punish.Category; +import mineplex.core.punish.PunishClient; import mineplex.core.punish.Punishment; import mineplex.core.treasure.event.TreasureStartEvent; import mineplex.core.updater.UpdateType; @@ -192,6 +193,7 @@ public class DisguiseCommand extends CommandBase implements Liste { other = new CoreClient(args[0]); Plugin.GetClients().LoadClient(other, uuid, caller.getAddress().getAddress().getAddress().toString()); + System.out.println(other.getAccountId()); otherRank = other.GetRank(); } catch(NullPointerException exception) { @@ -205,19 +207,10 @@ public class DisguiseCommand extends CommandBase implements Liste boolean canDisguise = true; if(other != null) { - NautHashMap> punishments = Plugin.getPunishments().GetClient(args[0]).GetPunishments(); - for(Category punishmentCategorys : punishments.keySet()) + PunishClient pclient = Plugin.getPunishments().GetClient(args[0]); + if(pclient.IsBanned() || pclient.IsMuted()) { - for(Punishment punishment : punishments.get(punishmentCategorys)) - { - if(punishment.GetActive()) - { - canDisguise = false; - break; - } - } - if(!canDisguise) - break; + canDisguise = false; } } if(!canDisguise)