diff options
Diffstat (limited to 'discordjs/src')
| -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 d1b2106..eeea619 100644 --- a/discordjs/src/index.mjs +++ b/discordjs/src/index.mjs @@ -81,7 +81,7 @@ const messageAction = async (message, ctx) => {      .last()      .createdTimestamp; -  let shouldReplyByTimestamp = currentTimestamp - lastMessageTimestamp >= 3600; +  let shouldReplyByTimestamp = currentTimestamp - lastMessageTimestamp >= 3600000;    let shouldReplyByCounter =      messageReplyCounter >= Math.floor(Math.random() * 75) + 35;    let shouldReply = (  | 
