diff --git a/plugins/help.py b/plugins/help.py index f6b5143..4a4fd47 100644 --- a/plugins/help.py +++ b/plugins/help.py @@ -46,3 +46,5 @@ def help(inp, notice=None, input=None, conn=None, bot=None): else: if inp in commands: notice(conn.conf["command_prefix"] + commands[inp].__doc__) + else: + notice("Command {}{} not found".format(conn.conf["command_prefix"], inp))