From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Wed, 10 Sep 2025 17:31:12 +0000 (-0700) Subject: [HOTFIX] Fix Loadout Validations (#40189) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=fc36a7a7c8904bde1bcfdb10dcce31e44b81a6d3;p=space-station-14.git [HOTFIX] Fix Loadout Validations (#40189) p0 bugfix Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- 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); }