From e67164972bc25fb432e3270444f429c2179e8335 Mon Sep 17 00:00:00 2001 From: dupie Date: Wed, 8 Jul 2015 19:59:35 -0400 Subject: [PATCH] fixed help --- plugins/help.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/help.lua b/plugins/help.lua index 36fea8b..23fb1a5 100644 --- a/plugins/help.lua +++ b/plugins/help.lua @@ -20,7 +20,7 @@ function PLUGIN.action(msg) if input then for i,v in ipairs(plugins) do if v.doc then - if '!' .. input == trim_string(first_word(v.doc)) then + if '/' .. input == trim_string(first_word(v.doc)) then return send_msg(msg, v.doc) end end