Copy eyecolor, and age on cloning (#14296)

This commit is contained in:
wrexbe
2023-02-28 07:40:02 -08:00
committed by GitHub
parent 487abb8165
commit 5e6a446c02

View File

@@ -121,6 +121,8 @@ public sealed partial class HumanoidAppearanceSystem : SharedHumanoidAppearanceS
targetHumanoid.Species = sourceHumanoid.Species;
targetHumanoid.SkinColor = sourceHumanoid.SkinColor;
targetHumanoid.EyeColor = sourceHumanoid.EyeColor;
targetHumanoid.Age = sourceHumanoid.Age;
SetSex(target, sourceHumanoid.Sex, false, targetHumanoid);
targetHumanoid.CustomBaseLayers = new(sourceHumanoid.CustomBaseLayers);
targetHumanoid.MarkingSet = new(sourceHumanoid.MarkingSet);