forked from GitHub/dbot
correct routing on admin commands in pm
This commit is contained in:
parent
ada0d56b19
commit
00928e9528
@ -81,8 +81,9 @@ var adminCommands = function(dbot) {
|
||||
|
||||
return {
|
||||
'listener': function(data) {
|
||||
params = data.message.split(' ');
|
||||
if(data.channel == this.name) data.channel = data.user;
|
||||
|
||||
params = data.message.split(' ');
|
||||
if(commands.hasOwnProperty(params[0]) && data.user == dbot.admin) {
|
||||
commands[params[0]](data, params);
|
||||
dbot.save();
|
||||
|
Loading…
Reference in New Issue
Block a user