From 370e42c6e64f950f96b48c42901437557068ac29 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sat, 25 Jul 2020 07:39:09 +0100 Subject: [PATCH] Mentioning the owner of the server --- cogs/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/info.py b/cogs/info.py index 563a3615..25d501c7 100644 --- a/cogs/info.py +++ b/cogs/info.py @@ -181,7 +181,7 @@ class Info(commands.Cog): invites = len(await ctx.guild.invites()) # Define fields to be added into the embed - fields = [("Owner", ctx.guild.owner, True), + fields = [("Owner", ctx.guild.owner.mention, True), ("Created", ctx.guild.created_at.strftime("%a, %b %d, %Y\n%I:%M:%S %p"), False), ("Region", str(ctx.guild.region).capitalize(), False), ("Statuses", f"🟢 {statuses[0]} \n🟠 {statuses[1]} \n🔴 {statuses[2]} \n⚪ {statuses[3]}", False),