diff --git a/commands/events/is-tuesday.js b/commands/events/is-tuesday.js index c5eaff2e..8acd3588 100644 --- a/commands/events/is-tuesday.js +++ b/commands/events/is-tuesday.js @@ -13,6 +13,6 @@ module.exports = class IsTuesdayCommand extends Command { } run(msg) { - return msg.say(`Today is${isTuesday() ? '' : ' **not**'} Tuesday.`); + return msg.say(`Today **is${isTuesday() ? '' : ' not'}** Tuesday.`); } };