From d925e620041c9bd2d7a09a0b47c1b5d07204f457 Mon Sep 17 00:00:00 2001 From: Supositware Date: Sat, 15 Apr 2023 19:48:08 +0200 Subject: [PATCH] "using slash" instead of "with slash" --- events/client/interactionCreate.js | 4 ++-- events/client/messageCreate.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/events/client/interactionCreate.js b/events/client/interactionCreate.js index e420b62..f8eae21 100644 --- a/events/client/interactionCreate.js +++ b/events/client/interactionCreate.js @@ -30,10 +30,10 @@ export default { const isOptOut = await db.optout.findOne({ where: { userID: interaction.user.id } }); if (isOptOut) { - console.log(`A user launched command \x1b[33m${commandName}\x1b[0m with slash`); + console.log(`A user launched command \x1b[33m${commandName}\x1b[0m using slash`); } else { - console.log(`\x1b[33m${userTag} (${userID})\x1b[0m launched command \x1b[33m${commandName}\x1b[0m with slash`); + console.log(`\x1b[33m${userTag} (${userID})\x1b[0m launched command \x1b[33m${commandName}\x1b[0m using slash`); } diff --git a/events/client/messageCreate.js b/events/client/messageCreate.js index 75cfd18..bd8cd22 100644 --- a/events/client/messageCreate.js +++ b/events/client/messageCreate.js @@ -296,10 +296,10 @@ export default { const isOptOut = await db.optout.findOne({ where: { userID: message.author.id } }); if (isOptOut) { - console.log(`A user launched command \x1b[33m${commandName}\x1b[0m with prefix`); + console.log(`A user launched command \x1b[33m${commandName}\x1b[0m using prefix`); } else { - console.log(`\x1b[33m${userTag} (${userID})\x1b[0m launched command \x1b[33m${commandName}\x1b[0m with prefix`); + console.log(`\x1b[33m${userTag} (${userID})\x1b[0m launched command \x1b[33m${commandName}\x1b[0m using prefix`); } // Owner only check