From 0576614825520f26e74df454789fd6972a85e2f8 Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 12 Nov 2013 16:34:54 +1300 Subject: [PATCH] Add 'baby' for constructing a disguise, and inform them that true/false is soon to be removed --- src/me/libraryaddict/disguise/BaseDisguiseCommand.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/me/libraryaddict/disguise/BaseDisguiseCommand.java b/src/me/libraryaddict/disguise/BaseDisguiseCommand.java index 7fa00269..63b60f1c 100644 --- a/src/me/libraryaddict/disguise/BaseDisguiseCommand.java +++ b/src/me/libraryaddict/disguise/BaseDisguiseCommand.java @@ -100,6 +100,11 @@ public abstract class BaseDisguiseCommand implements CommandExecutor { if (args.length > 1) { if (args[1].equalsIgnoreCase("true") || args[1].equalsIgnoreCase("false")) { adult = "false".equalsIgnoreCase(args[1]); + sender.sendMessage(ChatColor.RED + + "I notice you are using true/false for constructing a mob disguise! This will soon be removed in favor of the simple 'baby'"); + toSkip++; + } else if (args[1].equalsIgnoreCase("baby")) { + adult = false; toSkip++; } }