From 907aecb0aebc3449f2fefbec744cc5b608280905 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Mon, 21 Apr 2025 20:26:29 -0400 Subject: [PATCH] Fix identity grammar (#36817) Fix identity --- Content.Server/IdentityManagement/IdentitySystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/IdentityManagement/IdentitySystem.cs b/Content.Server/IdentityManagement/IdentitySystem.cs index f1b34c16fa..f873273f80 100644 --- a/Content.Server/IdentityManagement/IdentitySystem.cs +++ b/Content.Server/IdentityManagement/IdentitySystem.cs @@ -103,7 +103,7 @@ public sealed class IdentitySystem : SharedIdentitySystem // If presumed name is null and we're using that, we set proper noun to be false ("the old woman") if (name != representation.TrueName && representation.PresumedName == null) - _grammarSystem.SetProperNoun((uid, grammar), false); + _grammarSystem.SetProperNoun((ident, identityGrammar), false); Dirty(ident, identityGrammar); } -- 2.51.2