forked from blizzthewolf/SeaCogs
fix(bible): fixed incorrect method call
This commit is contained in:
parent
ad32a0fa67
commit
bf700f138c
1 changed files with 1 additions and 1 deletions
|
@ -65,5 +65,5 @@ class Bible(commands.Cog):
|
|||
except ValueError as e:
|
||||
await ctx.send(str(e))
|
||||
return
|
||||
passage = await self._get_verse(bible_id, book_id, chapter, verse)
|
||||
passage = await self._get_passage(bible_id, f"{book_id}.{chapter}.{verse}")
|
||||
await ctx.send(passage["content"])
|
||||
|
|
Loading…
Reference in a new issue