This commit is contained in:
Daniel Odendahl Jr
2017-04-30 22:56:59 +00:00
parent 83e990ae1c
commit 877f720cfc
105 changed files with 460 additions and 461 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ module.exports = class RouletteCommand extends Command {
});
}
run(message) {
return message.say(`I choose ${message.guild.members.random().displayName}!`);
run(msg) {
return msg.say(`I choose ${msg.guild.members.random().displayName}!`);
}
};