From 9a98d51dd5e99c90713425b1608b5dc58f5beb75 Mon Sep 17 00:00:00 2001 From: Lucas Gabriel <90426410+lucmsilva651@users.noreply.github.com> Date: Fri, 31 May 2024 17:47:31 -0300 Subject: [PATCH] Simple code fixes --- src/commands/furry.js | 2 +- src/commands/gay.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/furry.js b/src/commands/furry.js index 4c5a620..3c8758e 100644 --- a/src/commands/furry.js +++ b/src/commands/furry.js @@ -14,7 +14,7 @@ module.exports = function(bot, msg) { isFurry = `${userName} is not furry`; } else { isFurry = `${userName} is a furry.`; - } + }; const message = `${isFurry}`; diff --git a/src/commands/gay.js b/src/commands/gay.js index 12a0192..fe3089c 100644 --- a/src/commands/gay.js +++ b/src/commands/gay.js @@ -14,7 +14,7 @@ module.exports = function (bot, msg) { isGay = `${userName} is not gay.`; } else { isGay = `${userName} is a gay.`; - } + }; const message = `${isGay}`;