From 7520602a92c9d4103ec4ed013c4d6f356a67f80e Mon Sep 17 00:00:00 2001 From: sgoudham Date: Mon, 27 Jul 2020 21:09:47 +0100 Subject: [PATCH] Added confirmation for the database reload --- main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.py b/main.py index 507d73d8..b0558771 100644 --- a/main.py +++ b/main.py @@ -169,6 +169,9 @@ async def reload_db(ctx): await conn.commit() print(cur.rowcount, f"Record(s) inserted successfully into Members from {ctx.guild.name}") + # Sending confirmation message + await ctx.send("**Database Reloaded Successfully for Guild {}**".format(ctx.guild.name)) + @client.command(name="prefix", aliases=["Prefix"]) @guild_only()