From a6be874cb479e0706c0ea4d0d626f8b8c5b2793b Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Sat, 5 Aug 2017 14:28:11 -0500 Subject: [PATCH] Actually send the embed as an embed --- cogs/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/stats.py b/cogs/stats.py index 15762e4..c30c5f5 100644 --- a/cogs/stats.py +++ b/cogs/stats.py @@ -122,7 +122,7 @@ class Stats: if user.game: embed.add_field(name='Playing', value=user.game, inline=False) - await ctx.send(embed) + await ctx.send(embed=embed) @commands.group() @utils.custom_perms(send_messages=True)