diff --git a/src/me/libraryaddict/disguise/commands/UndisguiseEntityCommand.java b/src/me/libraryaddict/disguise/commands/UndisguiseEntityCommand.java index 36919a0d..ea4955f7 100644 --- a/src/me/libraryaddict/disguise/commands/UndisguiseEntityCommand.java +++ b/src/me/libraryaddict/disguise/commands/UndisguiseEntityCommand.java @@ -1,6 +1,5 @@ package me.libraryaddict.disguise.commands; - import me.libraryaddict.disguise.DisguiseListener; import org.bukkit.ChatColor; @@ -8,7 +7,6 @@ import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; - public class UndisguiseEntityCommand implements CommandExecutor { private DisguiseListener listener; @@ -24,6 +22,7 @@ public class UndisguiseEntityCommand implements CommandExecutor { } if (sender.hasPermission("libsdisguises.undisguiseentity")) { listener.setSlap(sender.getName(), null); + sender.sendMessage(ChatColor.RED + "Right click a disguised entity to undisguise them!"); } else sender.sendMessage(ChatColor.RED + "You are forbidden to use this command!"); return true;