From 805983e3f5936928a198b98e3e6d40e05896e5b0 Mon Sep 17 00:00:00 2001 From: MrMasrozYTLIVE <61359286+MrMasrozYTLIVE@users.noreply.github.com> Date: Mon, 10 Jun 2024 17:14:26 +0300 Subject: [PATCH] Oops forgot about bot startup message. It doesnt work because there's no known peers yet --- chatBot/bot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chatBot/bot.js b/chatBot/bot.js index c88d51b..eda0d50 100644 --- a/chatBot/bot.js +++ b/chatBot/bot.js @@ -61,7 +61,7 @@ loadCommands().then(commands => { bot.on('onBotJoinRoom', () => { console.log("Bot is ready!"); - bot.sendMessage(process.env.ON_READY_MESSAGE); + // bot.sendMessage(process.env.ON_READY_MESSAGE); }); bot.joinChatRoom(process.env.LINKUP_ROOM_ID);