From e7ddce25fc3add29f363ed72043ecc90309f289a Mon Sep 17 00:00:00 2001 From: hexskrt <90503141+hexskrt@users.noreply.github.com> Date: Tue, 15 Aug 2023 12:00:00 +0700 Subject: [PATCH] fix typo --- src/useCommand.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/useCommand.js b/src/useCommand.js index 5cce92e..4594e0c 100644 --- a/src/useCommand.js +++ b/src/useCommand.js @@ -61,7 +61,7 @@ module.exports = async function useCommand(msg, client, chat) { for (const stopMessage of stopMessages) { const sentMsg = await msg.reply(stopMessage); const idMessageBot = sentMsg.id._serialized.split('_').pop(); - console.log(chalk.white.bgRedBright.bold('STOPING') + + console.log(chalk.white.bgRedBright.bold('STOPPING') + " [" + chalk.redBright(`${stopMessage}`) + "] " + chalk.green('ID') + " [" + chalk.blueBright(`${idMessageBot}`) + "] " + @@ -75,7 +75,7 @@ module.exports = async function useCommand(msg, client, chat) { for (const network of networks) { try { await useMainnet(network); - console.log(chalk.white.bgGreenBright.bold('SUCCESS') + " [" + chalk.greenBright(`${network}`) + "] PREPERING FOR LOOPING"); + console.log(chalk.white.bgGreenBright.bold('SUCCESS') + " [" + chalk.greenBright(`${network}`) + "] PREPARING FOR LOOPING"); } catch (error) { const sentMsg = await msg.reply(error); const idMessageBot = sentMsg.id._serialized.split('_').pop();