fix(bible): fixed another typeerror
This commit is contained in:
parent
01b249fbb3
commit
33ce8a147c
1 changed files with 2 additions and 2 deletions
|
@ -267,7 +267,7 @@ class Bible(commands.Cog):
|
|||
return
|
||||
|
||||
if await ctx.embed_requested():
|
||||
icon = await self.get_icon(await ctx.embed_color())
|
||||
icon = self.get_icon(await ctx.embed_color())
|
||||
embed = Embed(
|
||||
title=f"{passage['reference']}",
|
||||
description=passage["content"].replace("¶ ", ""),
|
||||
|
@ -309,7 +309,7 @@ class Bible(commands.Cog):
|
|||
return
|
||||
|
||||
if await ctx.embed_requested():
|
||||
icon = await self.get_icon(await ctx.embed_color())
|
||||
icon = self.get_icon(await ctx.embed_color())
|
||||
embed = Embed(
|
||||
title=f"{passage['reference']}",
|
||||
description=passage["content"].replace("¶ ", ""),
|
||||
|
|
Loading…
Reference in a new issue