This commit is contained in:
Dragon Fire
2021-04-25 10:00:09 -04:00
parent 4c9025fe13
commit d2436c1c3c
2 changed files with 48 additions and 48 deletions
+1 -1
View File
@@ -20,6 +20,6 @@ module.exports = class AffirmationCommand extends Command {
}
run(msg) {
return msg.say(`${affirmations[Math.floor(Math.random() * affirmations.length)]}.`);
return msg.say(affirmations[Math.floor(Math.random() * affirmations.length)]);
}
};