From 2c5a4f742195b7b2286d29ac4de28c4e047685dc Mon Sep 17 00:00:00 2001 From: skins Date: Thu, 5 Aug 2021 23:56:12 +0100 Subject: [PATCH] Tiamat: fix monster embeds --- tiamat/tiamat.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tiamat/tiamat.py b/tiamat/tiamat.py index 2f2b443..b458e91 100644 --- a/tiamat/tiamat.py +++ b/tiamat/tiamat.py @@ -28,7 +28,7 @@ class Tiamat(commands.Cog): legendary_embed = discord.Embed(title="Legendary Actions") for action in data["legendary_actions"]: legendary_embed.add_field(name=action["name"], value=action["desc"]) - await ctx.send(initial_embed) - await ctx.send(attack_embed) + await ctx.send(embed=initial_embed) + await ctx.send(embed=attack_embed) if legendary_embed is not None: - await ctx.send(legendary_embed) + await ctx.send(embed=legendary_embed)