From ade9fcd80d52699b75b70865c0c406c55989cbe3 Mon Sep 17 00:00:00 2001 From: Marco Loewe Date: Tue, 30 May 2023 22:58:28 +0200 Subject: [PATCH] Removed limit from description, more of an internal parameter --- bot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.js b/bot.js index fe0abe2..3abbd1f 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 + "% - Cooldown: " + config.cooldown + " seconds - 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 + " - Word: " + config.word + " - Min. Syllables: " + config.syllableCount + " - Ignored Users: " + config.ignoredUsers.join(', ')); break; case "word": config.word = value;