diff options
author | Skycloudd <51929172+Skycloudd@users.noreply.github.com> | 2020-10-21 09:32:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 09:32:45 +0000 |
commit | f3f4b7f983815ebec10b0f30a76121118e7f83f7 (patch) | |
tree | b6ec99f0e650bb6e193a17ea64c2b5f85eb3fa21 /cogs/general.py | |
parent | f6b4d5008db07857aa234e40add6479f6458b902 (diff) | |
download | steve-bot-f3f4b7f983815ebec10b0f30a76121118e7f83f7.tar steve-bot-f3f4b7f983815ebec10b0f30a76121118e7f83f7.tar.gz steve-bot-f3f4b7f983815ebec10b0f30a76121118e7f83f7.tar.bz2 steve-bot-f3f4b7f983815ebec10b0f30a76121118e7f83f7.tar.lz steve-bot-f3f4b7f983815ebec10b0f30a76121118e7f83f7.tar.xz steve-bot-f3f4b7f983815ebec10b0f30a76121118e7f83f7.tar.zst steve-bot-f3f4b7f983815ebec10b0f30a76121118e7f83f7.zip |
fixed boosts field in serverinfo
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:
|