forked from snxraven/LinkUp-P2P-Chat
Replaced 'setTimeOut' with bot.on('onBotJoinRoom', () => {}); for sending ON_READY_MESSAGE to the chat
This commit is contained in:
parent
164efc5b72
commit
cd5cfb20a4
@ -61,15 +61,10 @@ loadCommands().then(commands => {
|
||||
|
||||
bot.on('onBotJoinRoom', () => {
|
||||
console.log("Bot is ready!");
|
||||
bot.sendMessage(process.env.ON_READY_MESSAGE);
|
||||
});
|
||||
|
||||
bot.joinChatRoom();
|
||||
|
||||
// Wait for 2 seconds for the bot to connect
|
||||
setTimeout(() => {
|
||||
// Send a message
|
||||
bot.sendMessage(process.env.ON_READY_MESSAGE);
|
||||
}, 2000); // Adjust the delay as necessary
|
||||
}).catch(error => {
|
||||
console.error('Error loading commands:', error);
|
||||
});
|
||||
|
@ -27,8 +27,8 @@ class Client extends EventEmitter {
|
||||
joinChatRoom() {
|
||||
this.discovery = this.swarm.join(this.topicBuffer, {client: true, server: true});
|
||||
this.discovery.flushed().then(() => {
|
||||
this.emit('onBotJoinRoom')
|
||||
console.log(`Bot ${this.botName} joined the chat room.`);
|
||||
this.emit('onBotJoinRoom');
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user