fix(bible): fixed another typeerror

This commit is contained in:
Seaswimmer 2024-04-06 06:18:16 -04:00
parent 01b249fbb3
commit 33ce8a147c
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -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("", ""),