Implement appel's suggestion (Crucial fix)

This commit is contained in:
Daniel Odendahl Jr
2018-10-01 17:30:56 +00:00
parent fe128a9831
commit 1d163ed5c1
+1 -1
View File
@@ -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.`);
}
};