From bb5b8d56f8d418a0f69c75fb70c6521220a49c8d Mon Sep 17 00:00:00 2001 From: hgw Date: Mon, 2 Oct 2023 02:11:24 +0000 Subject: [PATCH] change prefix to m! --- bot.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.js b/bot.js index 082daf9..b5e1e2f 100644 --- a/bot.js +++ b/bot.js @@ -34,7 +34,7 @@ async function help(chan, sub) { } if (sub === "default") { bot.say(chan, 'Mercury - https://git.supernets.org/hogwart7/mercury') - bot.say(chan, "r!set [OPTION] [VALUE] - run r!help set for details") + bot.say(chan, "m!set [OPTION] [VALUE] - run r!help set for details") } } @@ -79,7 +79,7 @@ async function godwords(chan, amt) { bot.addListener('message', function(nick, to, text, from) { var args = text.split(' '); - if (args[0] === 'r!help') { + if (args[0] === 'm!help') { help(to, args[1]); } });