diff options
Diffstat (limited to 'cogs/general.py')
-rwxr-xr-x | cogs/general.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cogs/general.py b/cogs/general.py index eff80d5..6f5fef5 100755 --- a/cogs/general.py +++ b/cogs/general.py @@ -512,13 +512,13 @@ class General(commands.Cog): if guild.premium_subscription_count == 1:
embed.add_field(
name="Amount of boosts:",
- value=f"{guild.premium_subscription_count} boosts",
+ value=f"{guild.premium_subscription_count} boost",
inline=True,
)
else:
embed.add_field(
- name="Boosted by:",
- value=f"{guild.premium_subscription_count} members",
+ name="Amount of boosts:",
+ value=f"{guild.premium_subscription_count} boosts",
inline=True,
)
if guild.premium_subscribers:
|