Disguise commands now tell you when they didn't disguise successfully

This commit is contained in:
libraryaddict
2014-06-05 00:26:35 +12:00
parent 956fef9ca1
commit f894b34264
4 changed files with 22 additions and 6 deletions

View File

@@ -64,8 +64,13 @@ public class DisguisePlayerCommand extends BaseDisguiseCommand {
}
}
DisguiseAPI.disguiseToAll(player, disguise);
sender.sendMessage(ChatColor.RED + "Successfully disguised " + player.getName() + " as a "
+ disguise.getType().toReadable() + "!");
if (disguise.isDisguiseInUse()) {
sender.sendMessage(ChatColor.RED + "Successfully disguised " + player.getName() + " as a "
+ disguise.getType().toReadable() + "!");
} else {
sender.sendMessage(ChatColor.RED + "Failed to disguise " + player.getName() + " as a "
+ disguise.getType().toReadable() + "!");
}
return true;
}