From d344732864dfeedd476d5b2ec6b7730e052153f5 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Mon, 17 Aug 2020 10:31:24 +0100 Subject: [PATCH] Representing the update in an embed instead of just text --- bot/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/__init__.py b/bot/__init__.py index f6835905..a7c8a55d 100644 --- a/bot/__init__.py +++ b/bot/__init__.py @@ -221,8 +221,8 @@ class Bot(commands.Bot): if setup: # Send confirmation that modmail channel has been setup - await ctx.send(f"**Modlogs Channel** successfully setup in <#{channelID}>" + - f"\nPlease refer to **{ctx.prefix}help** for any information") + await self.bot.generate_embed(ctx, desc=f"**Modlogs Channel** successfully setup in <#{channelID}>" + + f"\nPlease refer to **{ctx.prefix}help** for any information") else: # Let the user know that the guild modlogs channel has been updated channel = ctx.guild.get_channel(channelID)