mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
Fix "Max online" number not being bolded in !server
This commit is contained in:
parent
5f8c42f575
commit
b641acb8cd
1 changed files with 1 additions and 1 deletions
|
@ -1092,7 +1092,7 @@ export class UtilityPlugin extends ZeppelinPlugin<TConfigSchema> {
|
|||
|
||||
let memberCountOnlineLines = `Online: **${formatNumber(onlineMemberCount)}**`;
|
||||
if (restGuild.maxPresences) {
|
||||
memberCountOnlineLines += `\nMax online: ${formatNumber(restGuild.maxPresences)}`;
|
||||
memberCountOnlineLines += `\nMax online: **${formatNumber(restGuild.maxPresences)}**`;
|
||||
}
|
||||
|
||||
embed.fields.push({
|
||||
|
|
Loading…
Add table
Reference in a new issue