diff --git a/commands/random-res/affirmation.js b/commands/random-res/affirmation.js index 1b0178a9..6dcd1cfd 100644 --- a/commands/random-res/affirmation.js +++ b/commands/random-res/affirmation.js @@ -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)]}.`); } };