diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandhelp.java b/Essentials/src/com/earth2me/essentials/commands/Commandhelp.java index 2b1ba9776..d73a2706b 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandhelp.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandhelp.java @@ -120,7 +120,8 @@ public class Commandhelp extends EssentialsCommand for (Entry> k : cmds.entrySet()) { if ((!match.equalsIgnoreCase("")) && (!k.getKey().toLowerCase().contains(match)) - && (!k.getValue().get("description").toLowerCase().contains(match))) + && (!k.getValue().get("description").toLowerCase().contains(match)) + && (!p.getDescription().getName().contains(match))) { continue; }