forked from blizzthewolf/SeaCogs
fix(bible): fixed bible random being inaccessible
This commit is contained in:
parent
52a440ff3e
commit
46685eee82
1 changed files with 5 additions and 1 deletions
|
@ -82,7 +82,11 @@ class Bible(commands.Cog):
|
|||
return data["data"]
|
||||
|
||||
@commands.group(autohelp=True)
|
||||
async def bible(self, ctx: commands.Context, book: str, passage: str):
|
||||
async def bible(self, ctx: commands.Context):
|
||||
"""Retrieve Bible verses from the API.bible API."""
|
||||
|
||||
@bible.command(name="passage", aliases=["verse"])
|
||||
async def bible_passage(self, ctx: commands.Context, book: str, passage: str):
|
||||
"""Get a Bible passage.
|
||||
|
||||
Example usage:
|
||||
|
|
Loading…
Reference in a new issue