From 096f998c3fb54e8434d39b6c8d87e3d22500b67b 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 098f65ef18..5c0c316898 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -205,6 +205,7 @@ namespace Content.Shared.Preferences return new() { Species = species, + Appearance = HumanoidCharacterAppearance.DefaultWithSpecies(species), }; }