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

Commit

Permalink
fix: wrong variable
Browse files Browse the repository at this point in the history
  • Loading branch information
wdhdev committed Jul 9, 2023
1 parent 4c58b1d commit f11f30d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/info/bot.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,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 = `✅ ${verified.length} Verified User${verified.length === 1 ? "" : "s"}`;
const stat_donators = `💸 ${donators.length} Donator${boosters.size === 1 ? "" : "s"}`;
const stat_donators = `💸 ${donators.length} Donator${donators.length === 1 ? "" : "s"}`;
const stat_supporters = `💖 ${boosters.size} Supporter${boosters.size === 1 ? "" : "s"}`;

const stat_messages = `💬 ${messages.length} Message${messages.length === 1 ? "" : "s"}`;
Expand Down

0 comments on commit f11f30d

Please sign in to comment.