From 17f7bd15bf47c197653197eb7ace764b4fb2735a Mon Sep 17 00:00:00 2001 From: Red-GitHubBot <88117545+Red-GitHubBot@users.noreply.github.com> Date: Sat, 4 Jun 2022 03:02:04 +0200 Subject: [PATCH] [3.4] Reference how to reply in the `[p]contact` command with embed settings (#5529) (#5733) (cherry picked from commit c9a09719455528e6e52b737ec1164f8ef1165115) Co-authored-by: Kreusada <67752638+Kreusada@users.noreply.github.com> Co-authored-by: Kreusada <67752638+Kreusada@users.noreply.github.com> --- redbot/core/core_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index 59f7e00e3..6a6cd5987 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -3427,7 +3427,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic): else: e.set_author(name=description) - e.set_footer(text=footer) + e.set_footer(text="{}\n{}".format(footer, content)) try: await destination.send(embed=e)