From 7db368a6a0d0666c818288ab13efca8a5c50199a 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 4dbe7b822e..cabcfa8954 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -696,6 +696,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); }