From c9a09719455528e6e52b737ec1164f8ef1165115 Mon Sep 17 00:00:00 2001 From: Kreusada <67752638+Kreusada@users.noreply.github.com> Date: Sat, 2 Apr 2022 01:57:06 +0100 Subject: [PATCH] Reference how to reply in the `[p]contact` command with embed settings (#5529) --- 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 90653a940..9678a5abb 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -3987,7 +3987,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)