mirror of
https://github.com/reality/dbot.git
synced 2024-11-27 22:39:26 +01:00
save on admin commands
This commit is contained in:
parent
14db0b6eb6
commit
ada0d56b19
@ -83,8 +83,10 @@ var adminCommands = function(dbot) {
|
|||||||
'listener': function(data) {
|
'listener': function(data) {
|
||||||
params = data.message.split(' ');
|
params = data.message.split(' ');
|
||||||
|
|
||||||
if(commands.hasOwnProperty(params[0]) && data.user == dbot.admin)
|
if(commands.hasOwnProperty(params[0]) && data.user == dbot.admin) {
|
||||||
commands[params[0]](data, params);
|
commands[params[0]](data, params);
|
||||||
|
dbot.save();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
'on': 'PRIVMSG'
|
'on': 'PRIVMSG'
|
||||||
|
Loading…
Reference in New Issue
Block a user