3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 12:25:02 +00:00

upgraded discord.js

This commit is contained in:
almeidx 2021-07-29 17:45:45 +01:00
parent 5de35f711d
commit b5ea866e62
No known key found for this signature in database
GPG key ID: 8558FBFF849BD664
3 changed files with 9 additions and 9 deletions

View file

@ -27,7 +27,7 @@ export const SlowmodeGetCmd = slowmodeCmd({
}
if (currentSlowmode) {
const humanized = humanizeDuration(channel.rateLimitPerUser * 1000);
const humanized = humanizeDuration(currentSlowmode * 1000);
const slowmodeType = isNative ? "native" : "bot-maintained";
msg.channel.send(`The current slowmode of <#${channel.id}> is **${humanized}** (${slowmodeType})`);
} else {