From 78398fb656faaeeb0e10303039b8943f9e8b93ad Mon Sep 17 00:00:00 2001 From: Marco Loewe Date: Tue, 30 May 2023 22:44:44 +0200 Subject: [PATCH] Adjusted config message --- bot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.js b/bot.js index d63a11d..fe0abe2 100644 --- a/bot.js +++ b/bot.js @@ -96,7 +96,7 @@ function onMessageHandler (channel, userstate, message, self) { switch (action) { case "config": - client.say(channel, "Chance: " + config.chance + "% - Pity: " + config.pity + " - Limit: " + config.limit + " - Word: " + config.word + " - Min. Syllables: " + config.syllableCount + " - Ignored Users: " + config.ignoredUsers.join(', ')); + client.say(channel, "Chance: " + config.chance + "% - Cooldown: " + config.cooldown + " seconds - Pity: " + config.pity + " - Limit: " + config.limit + " - Word: " + config.word + " - Min. Syllables: " + config.syllableCount + " - Ignored Users: " + config.ignoredUsers.join(', ')); break; case "word": config.word = value;