From 7507675f85460301aa21b4b006b04d9b71ebdff5 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Wed, 29 Jul 2020 01:38:15 +0100 Subject: [PATCH] Restart command is now embed --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index d0044ba8..bff280e3 100644 --- a/main.py +++ b/main.py @@ -123,7 +123,8 @@ async def leave(ctx): async def restart(ctx): """Restart the Bot""" - await ctx.send("**Success Senpai! Bot has been restarted**") + embed = Embed(description="**Success Senpai! My Reboot Had No Problems 。゚( ゚^∀^゚)゚。**") + await ctx.send(embed=embed, delete_after=5.0) await client.logout()