From 0f81ae24a00900bbe2c2db343ac9f983fb439734 Mon Sep 17 00:00:00 2001 From: Goodlyay Date: Fri, 29 Mar 2024 21:14:51 -0700 Subject: [PATCH] use reflexive pronoun in hug self --- MCGalaxy/Commands/Chat/MessageCmd.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Commands/Chat/MessageCmd.cs b/MCGalaxy/Commands/Chat/MessageCmd.cs index ae40634c7..1da8152b6 100644 --- a/MCGalaxy/Commands/Chat/MessageCmd.cs +++ b/MCGalaxy/Commands/Chat/MessageCmd.cs @@ -27,7 +27,7 @@ namespace MCGalaxy.Commands.Chatting Player target = PlayerInfo.FindMatches(p, name); if (target == null) return false; - string reciever = p == target ? "themselves" : target.ColoredName; + string reciever = p == target ? p.pronouns.Reflexive : target.ColoredName; if (!TryMessage(p, msg.Replace("λTARGET", reciever))) return false; if (messageWho && p != target && !Chat.Ignoring(target, p)) {