Skip to content
Snippets Groups Projects
Commit 0a08b4f3 authored by mcmlxxix's avatar mcmlxxix
Browse files

fix bug in previous commit :|

parent 2adfe6a2
No related branches found
No related tags found
No related merge requests found
......@@ -626,10 +626,11 @@ Server_Commands["PRIVMSG"] = function (srv,cmd,onick,ouh) {
}
/* check main bot commands */
try
try {
srv.bot_command(srv,Bot_Commands,chan.name,onick,ouh,cmd.join(" "));
catch(e)
} catch(e) {
srv.o(chan.name,e);
}
for(var m in Modules) {
var module=Modules[m];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment