Skip to content
Snippets Groups Projects
Commit 37382f02 authored by mcmlxxix's avatar mcmlxxix
Browse files

don't reload standard libraries from RELOAD command

parent 57a4244d
Branches
Tags
No related merge requests found
......@@ -29,9 +29,10 @@ Bot_Commands["RELOAD"].command = function (target,onick,ouh,srv,lvl,cmd) {
load("load/ircbot_commands.js");
load("load/ircbot_functions.js");
for(var m in Modules) {
/* Don't reload libraries??
for(var l in Modules[m].lib) {
if(Modules[m].lib[l]) load(Modules[m],Modules[m].lib[l]);
}
} */
for(var l in Modules[m].load) {
if(Modules[m].load[l]) load(Modules[m],Modules[m].load[l]);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment