Skip to content

Commit

Permalink
Convert unMuteTime to ms for ease
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUntraceable committed Dec 24, 2021
1 parent 7ec0f8c commit 8cc91eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ class AntiSpamClient extends EventEmitter {
maxDuplicatesKick: options.maxDuplicatesKick || 10,
maxDuplicatesBan: options.maxDuplicatesBan || 11,

unMuteTime: options.unMuteTime || 300000,
unMuteTime: options.unMuteTime * 60_000 || 300000,

modLogsChannelName: options.modLogsChannelName || 'mod-logs',
modLogsEnabled: options.modLogsEnabled || false,
Expand Down

0 comments on commit 8cc91eb

Please sign in to comment.