From 1b55d1c6a4b0583822249de84dc4cba59feacb05 Mon Sep 17 00:00:00 2001 From: Petal Ladenson Date: Sat, 9 Nov 2024 11:34:42 -0700 Subject: [PATCH] fix: respect cfg settings for displaying ids in pk;msg --- PluralKit.Bot/Commands/Message.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/Message.cs b/PluralKit.Bot/Commands/Message.cs index 4f5257ec..6fc271a1 100644 --- a/PluralKit.Bot/Commands/Message.cs +++ b/PluralKit.Bot/Commands/Message.cs @@ -432,7 +432,7 @@ public class ProxiedMessage return; } - await ctx.Reply(embed: await _embeds.CreateMessageInfoEmbed(message, showContent)); + await ctx.Reply(embed: await _embeds.CreateMessageInfoEmbed(message, showContent, ctx.Config)); } private async Task DeleteCommandMessage(Context ctx, ulong messageId)