From 23192b9ef676f90a02f855229459925a810ebcc7 Mon Sep 17 00:00:00 2001 From: bobloy Date: Fri, 4 May 2018 01:27:44 -0400 Subject: [PATCH] simple_embed doesn't take author (#1555) Simple embed doesn't use ctx.author as author --- redbot/core/help_formatter.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/redbot/core/help_formatter.py b/redbot/core/help_formatter.py index 5df24d87d..b8e4bf031 100644 --- a/redbot/core/help_formatter.py +++ b/redbot/core/help_formatter.py @@ -341,8 +341,7 @@ async def help(ctx, *cmds: str): embed=ctx.bot.formatter.simple_embed( ctx, title='Command "{0.name}" has no subcommands.'.format(command), - color=ctx.bot.formatter.color, - author=ctx.author.display_name)) + color=ctx.bot.formatter.color)) else: await destination.send( ctx.bot.command_has_no_subcommands.format(command)