Add period to end of affirmations

This commit is contained in:
Dragon Fire
2021-04-24 19:31:38 -04:00
parent 5bc2613c01
commit 16cbe998b5
+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)]}.`);
}
};