diff options
| author | Matthieu Pignolet <matthieu@matthieu-dev.xyz> | 2024-07-09 22:42:21 +0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-09 22:42:21 +0400 |
| commit | 32930e13fb987361fe941448ef4628412fedd17c (patch) | |
| tree | 306ccd39c70b2f5df4422b98e1dfee9ea18eb1a8 | |
| parent | fffb0e80270c7803eae2eeef939f38acdf591873 (diff) | |
Increase the answer frequency
| -rw-r--r-- | discordjs/src/index.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discordjs/src/index.mjs b/discordjs/src/index.mjs index ea8d87b..566348b 100644 --- a/discordjs/src/index.mjs +++ b/discordjs/src/index.mjs @@ -53,7 +53,7 @@ const messageAction = async (message) => { counter += 1; console.log("counter is at", counter); - let shouldReplyByCounter = counter >= 75; + let shouldReplyByCounter = counter >= 50; let shouldReply = (shouldReplyByCounter || specialChannels.includes(message.channelId) || message.guild == null); if (shouldReply) { |
