From 42e209b54755768443605c71987069cd6278681d Mon Sep 17 00:00:00 2001 From: Seaswimmer Date: Tue, 28 May 2024 21:10:28 -0400 Subject: [PATCH] misc(seautils): include the number of the rfc document in the embed --- seautils/seautils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seautils/seautils.py b/seautils/seautils.py index f6943d1..146384f 100644 --- a/seautils/seautils.py +++ b/seautils/seautils.py @@ -211,7 +211,7 @@ class SeaUtils(commands.Cog): text = convert_rfc_references(md(pre_tag)) if await ctx.embed_requested(): embed = Embed( - title="RFC Document", + title=f"RFC Document {number}", description=text, color=await ctx.embed_color() )