Skip to content
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.

Commit

Permalink
Update bot.js
Browse files Browse the repository at this point in the history
Rename variable
  • Loading branch information
wdhdev committed Jul 9, 2023
1 parent f04e287 commit 6911eaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/info/bot.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = {

const developers = await devSchema.find();
const moderators = await modSchema.find();
const verifiedUsers = await verifiedSchema.find();
const verified = await verifiedSchema.find();
const donators = await donatorSchema.find();

const messages = await messageSchema.find();
Expand All @@ -46,7 +46,7 @@ module.exports = {

const stat_developers = `💻 ${developers.length} Developer${developers.length === 1 ? "" : "s"}`;
const stat_moderators = `🔨 ${moderators.length} Moderator${moderators.length === 1 ? "" : "s"}`;
const stat_verified = `✅ ${verifiedUsers.length} Verified User${verifiedUsers.length === 1 ? "" : "s"}`;
const stat_verified = `✅ ${verified.length} Verified User${verified.length === 1 ? "" : "s"}`;
const stat_donators = `💸 ${donators.length} Donator${boosters.size === 1 ? "" : "s"}`;
const stat_supporters = `💖 ${boosters.size} Supporter${boosters.size === 1 ? "" : "s"}`;

Expand Down

0 comments on commit 6911eaa

Please sign in to comment.