Fix "Max online" number not being bolded in !server

This commit is contained in:
Dragory 2020-01-22 02:20:50 +02:00
parent 5f8c42f575
commit b641acb8cd
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1

View file

@ -1092,7 +1092,7 @@ export class UtilityPlugin extends ZeppelinPlugin<TConfigSchema> {
let memberCountOnlineLines = `Online: **${formatNumber(onlineMemberCount)}**`; let memberCountOnlineLines = `Online: **${formatNumber(onlineMemberCount)}**`;
if (restGuild.maxPresences) { if (restGuild.maxPresences) {
memberCountOnlineLines += `\nMax online: ${formatNumber(restGuild.maxPresences)}`; memberCountOnlineLines += `\nMax online: **${formatNumber(restGuild.maxPresences)}**`;
} }
embed.fields.push({ embed.fields.push({