transform dice [#131]

This commit is contained in:
reality 2013-01-15 16:09:57 +00:00
parent 478d344fe2
commit 529194e4df

View File

@ -93,13 +93,11 @@ var dice = function(dbot) {
} }
}; };
return { this.name = 'dice';
'name': 'dice', this.commands = commands;
'commands': commands, this.ignorable = true;
'ignorable': true
};
} }
exports.fetch = function(dbot) { exports.fetch = function(dbot) {
return dice(dbot); return new dice(dbot);
}; };