From 6a5c0d2befd5dc0861a2433ba0d84ea92e444609 Mon Sep 17 00:00:00 2001 From: Absotively Date: Sun, 5 Oct 2025 14:53:58 -0600 Subject: [PATCH] Fix species default skin tones (#40707) fix so that all default Urist entities don't spawn with the same default human skin tone (cursed skin tone Urist McSlime) (cherry picked from commit 8d9564c23856c342bc3a35834c462e659f5ebd5b) Co-authored-by: Quantum-cross <7065792+Quantum-cross@users.noreply.github.com> --- Content.Shared/Preferences/HumanoidCharacterProfile.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index cabcfa8954..25fa215c69 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -234,6 +234,7 @@ namespace Content.Shared.Preferences return new() { Species = species, + Appearance = HumanoidCharacterAppearance.DefaultWithSpecies(species), }; }