From bf2a786e2b8061480d3c632d8b8cf87f0e6541af Mon Sep 17 00:00:00 2001 From: aewens Date: Fri, 7 Sep 2018 15:53:18 -0400 Subject: [PATCH] Adds +B usermode to conform to RFC for tildeverse --- bot.js | 1 + 1 file changed, 1 insertion(+) diff --git a/bot.js b/bot.js index c9aa02a..0fe24b5 100644 --- a/bot.js +++ b/bot.js @@ -455,6 +455,7 @@ client.addListener("join", (channel) => { client.addListener("registered", () => { // client.say("NickServ", `RECOVER ${botName} ${client.config.password}`); client.say("NickServ", `IDENTIFY ${client.config.password}`); + client.send("MODE", botName, "+B"); }); client.connect();