use the client's name in the info blob

This commit is contained in:
Luke Robles 2022-04-25 12:27:51 -07:00
parent b4917801d6
commit ecbd0d60af
2 changed files with 3 additions and 2 deletions

View File

@ -694,7 +694,8 @@ async def info(ctx):
inline=False, inline=False,
) )
embed.add_field( embed.add_field(
name="Servers using Dragon bot", value="\n".join(x.name for x in bot.guilds) name="Servers using %s" % bot.user.name,
value="\n".join(x.name for x in bot.guilds),
) )
embed.set_thumbnail(url=server.icon_url) embed.set_thumbnail(url=server.icon_url)

View File

@ -8,7 +8,7 @@ image:
repository: ldooks/dragon-bot repository: ldooks/dragon-bot
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion. # Overrides the image tag whose default is the chart appVersion.
tag: "149" tag: "150"
imagePullSecrets: [] imagePullSecrets: []
nameOverride: "" nameOverride: ""