fix(bible): changed a few strings

This commit is contained in:
Seaswimmer 2024-02-01 18:49:06 -05:00
parent 46685eee82
commit 0a07e2dfa8
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -90,8 +90,8 @@ class Bible(commands.Cog):
"""Get a Bible passage.
Example usage:
`[p]bible Genesis 1:1`
`[p]bible John 3:16-3:17`"""
`[p]bible passage Genesis 1:1`
`[p]bible passage John 3:16-3:17`"""
bible_id = await self.config.bible()
try:
@ -121,7 +121,7 @@ class Bible(commands.Cog):
description=passage["content"].replace("", ""),
color=await self.bot.get_embed_color(ctx.channel),
)
embed.set_footer(text=f"{ctx.prefix}bible - Powered by API.bible")
embed.set_footer(text=f"{ctx.prefix}bible passage - Powered by API.bible")
await ctx.send(embed=embed)
@bible.command(name="random")