From 9fbd68d0afd447310922bdb28af991549bed6883 Mon Sep 17 00:00:00 2001 From: dawn <90008@gaze.systems> Date: Sat, 17 Jan 2026 07:59:33 +0300 Subject: [PATCH] check for null pronouns in ShowPronouns always --- PluralKit.Bot/Commands/MemberEdit.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/PluralKit.Bot/Commands/MemberEdit.cs b/PluralKit.Bot/Commands/MemberEdit.cs index e4ccc6ea..e13dc919 100644 --- a/PluralKit.Bot/Commands/MemberEdit.cs +++ b/PluralKit.Bot/Commands/MemberEdit.cs @@ -158,12 +158,12 @@ public class MemberEdit if (ctx.System?.Id == target.System) noPronounsSetMessage += $" To set some, type `{ctx.DefaultPrefix}member {target.Reference(ctx)} pronouns `."; - if (format != ReplyFormat.Standard) - if (target.Pronouns == null) - { - await ctx.Reply(noPronounsSetMessage); - return; - } + // check for null since we are doing a query + if (target.Pronouns == null) + { + await ctx.Reply(noPronounsSetMessage); + return; + } if (format == ReplyFormat.Raw) {