From 16cbe998b5c209a8b5f09efac0fb838860faf881 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 24 Apr 2021 19:31:38 -0400 Subject: [PATCH] Add period to end of affirmations --- commands/random-res/affirmation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)]}.`); } };