Removed limit from description, more of an internal parameter

This commit is contained in:
Marco Loewe 2023-05-30 22:58:28 +02:00
parent 78398fb656
commit ade9fcd80d

2
bot.js
View File

@ -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;