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)