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 {
'name': 'dice',
'commands': commands,
'ignorable': true
};
this.name = 'dice';
this.commands = commands;
this.ignorable = true;
}
exports.fetch = function(dbot) {
return dice(dbot);
return new dice(dbot);
};