From fc36a7a7c8904bde1bcfdb10dcce31e44b81a6d3 Mon Sep 17 00:00:00 2001 From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Wed, 10 Sep 2025 10:31:12 -0700 Subject: [PATCH] [HOTFIX] Fix Loadout Validations (#40189) p0 bugfix Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- Content.Shared/Preferences/HumanoidCharacterProfile.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index f22669ddc7..dbfeb0ab3c 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -631,6 +631,9 @@ namespace Content.Shared.Preferences continue; } + // This happens after we verify the prototype exists + // These values are set equal in the database and we need to make sure they're equal here too! + loadouts.Role = roleName; loadouts.EnsureValid(this, session, collection); }