!server: fix max emoji count not including animated emojis
This commit is contained in:
parent
52980a2515
commit
a234e18ec3
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ export async function serverInfo(pluginData: PluginData<UtilityPluginType>, serv
|
||||||
2: 150,
|
2: 150,
|
||||||
3: 250,
|
3: 250,
|
||||||
}[restGuild.premiumTier] || 50;
|
}[restGuild.premiumTier] || 50;
|
||||||
otherStats.push(`Emojis: **${restGuild.emojis.length}** / ${maxEmojis}`);
|
otherStats.push(`Emojis: **${restGuild.emojis.length}** / ${maxEmojis * 2}`);
|
||||||
} else {
|
} else {
|
||||||
otherStats.push(`Emojis: **${guildPreview.emojis.length}**`);
|
otherStats.push(`Emojis: **${guildPreview.emojis.length}**`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue