From 968922f7ad3af5d2a4d12877c2e8e945a29e4a15 Mon Sep 17 00:00:00 2001 From: Robin Kanters Date: Sat, 23 May 2015 14:56:05 +0200 Subject: [PATCH] /help should show the help for that command, not execute it --- TrueCraft/Commands/HelpCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TrueCraft/Commands/HelpCommand.cs b/TrueCraft/Commands/HelpCommand.cs index e017208..55c4af2 100644 --- a/TrueCraft/Commands/HelpCommand.cs +++ b/TrueCraft/Commands/HelpCommand.cs @@ -29,7 +29,7 @@ namespace TrueCraft.Commands ICommand found; if ((found = Program.CommandManager.FindByName(identifier)) != null) { - found.Handle(client, identifier, new string[0]); + found.Help(client, identifier, new string[0]); return; } else if ((found = Program.CommandManager.FindByAlias(identifier)) != null)