From 3527ce5392a7f7b22e647034c4de641ad61056de Mon Sep 17 00:00:00 2001 From: Lucas Gabriel <90426410+lucmsilva651@users.noreply.github.com> Date: Fri, 31 May 2024 17:55:09 -0300 Subject: [PATCH] Typo fixes + More commands in help --- src/commands/furry.js | 4 ++-- src/commands/gay.js | 4 ++-- src/commands/help.js | 5 ++++- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/commands/furry.js b/src/commands/furry.js index 3c8758e..fc05949 100644 --- a/src/commands/furry.js +++ b/src/commands/furry.js @@ -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}`; diff --git a/src/commands/gay.js b/src/commands/gay.js index fe3089c..d43638f 100644 --- a/src/commands/gay.js +++ b/src/commands/gay.js @@ -11,9 +11,9 @@ module.exports = function (bot, msg) { const randomValue = getRandomInt(2); if (randomValue === 0) { - isGay = `${userName} is not gay.`; + isGay = `You (${userName}) are not a gay.`; } else { - isGay = `${userName} is a gay.`; + isGay = `Yes, you (${userName}) are a gay.`; }; const message = `${isGay}`; diff --git a/src/commands/help.js b/src/commands/help.js index f2b44e9..6cf2aeb 100644 --- a/src/commands/help.js +++ b/src/commands/help.js @@ -6,7 +6,10 @@ module.exports = function(bot, msg) { const message = `Hi! I am Lynx!\nI am a simple bot made entirely from scratch in Node.js by Lucas Gabriel (lucmsilva).\n\nSome commands to test: • /start: start the bot • /help: send this message - • /whois: send some information about yourself\n\nSee my source code in: + • /whois: send some information about yourself + • /chatinfo: send some information about the group + • /furry: check if you are a furry + • /gay: check if you are a gay\n\nSee my source code in: • https://github.com/lucmsilva651/lynx.\n\nThanks to all users, testers, contributors, and others. Without you, perhaps this bot wouldn't be possible ❤️`; bot.sendMessage(chatId, message, {disable_web_page_preview: true})