feat(bible): added language to output of bible passage and bible random
Some checks failed
Actions / Lint Code (Pylint) (push) Failing after 16s
Actions / Build Documentation (MkDocs) (push) Successful in 12s

This commit is contained in:
Seaswimmer 2024-02-02 12:44:48 -05:00
parent 3dce020a65
commit cf5e146f88
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -239,7 +239,7 @@ class Bible(commands.Cog):
color=await self.bot.get_embed_color(ctx.channel),
)
embed.set_footer(
text=f"{ctx.prefix}bible passage - Powered by API.Bible - {version.abbreviationLocal}"
text=f"{ctx.prefix}bible passage - Powered by API.Bible - {version.abbreviationLocal} ({version.languageLocal})"
)
await ctx.send(embed=embed)
else:
@ -279,7 +279,7 @@ class Bible(commands.Cog):
color=await self.bot.get_embed_color(ctx.channel),
)
embed.set_footer(
text=f"{ctx.prefix}bible random - Powered by API.Bible - {version.abbreviationLocal}"
text=f"{ctx.prefix}bible random - Powered by API.Bible - {version.abbreviationLocal} ({version.languageLocal})"
)
await ctx.send(embed=embed)
else: