Typo fixes + More commands in help

This commit is contained in:
Lucas Gabriel 2024-05-31 17:55:09 -03:00
parent 9a98d51dd5
commit 3527ce5392
No known key found for this signature in database
GPG key ID: D9B075FC6DC93985
3 changed files with 8 additions and 5 deletions

View file

@ -11,9 +11,9 @@ module.exports = function(bot, msg) {
const randomValue = getRandomInt(2);
if (randomValue === 0) {
isFurry = `${userName} is not furry`;
isFurry = `You (${userName}) are not a furry.`;
} else {
isFurry = `${userName} is a furry.`;
isFurry = `Yes, you (${userName}) are a furry.`;
};
const message = `${isFurry}`;