diff --git a/bible/bible.py b/bible/bible.py index 4e57924..2825a61 100644 --- a/bible/bible.py +++ b/bible/bible.py @@ -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")