Revert "feat: double the couner reply probability"
This reverts commit f2651f8b07
.
This commit is contained in:
parent
a452845ec8
commit
a12a7ba11e
|
@ -82,7 +82,7 @@ const messageAction = async (message, ctx) => {
|
|||
|
||||
let shouldReplyByTimestamp = currentTimestamp - lastMessageTimestamp >= 3600000;
|
||||
let shouldReplyByCounter =
|
||||
messageReplyCounter * 2 >= Math.floor(Math.random() * 75) + 35;
|
||||
messageReplyCounter >= Math.floor(Math.random() * 75) + 35;
|
||||
let shouldReply = (
|
||||
(ctx === SYMBOL_FOR_CREATE && shouldReplyByTimestamp) ||
|
||||
shouldReplyByCounter ||
|
||||
|
|
Loading…
Reference in a new issue