diff --git a/1.5/Assemblies/RJW_Menstruation.dll b/1.5/Assemblies/RJW_Menstruation.dll index ba4a58c..87704b7 100644 Binary files a/1.5/Assemblies/RJW_Menstruation.dll and b/1.5/Assemblies/RJW_Menstruation.dll differ diff --git a/1.5/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_PregeneratedBabies.cs b/1.5/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_PregeneratedBabies.cs index 9f383b0..9df33f4 100644 --- a/1.5/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_PregeneratedBabies.cs +++ b/1.5/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_PregeneratedBabies.cs @@ -114,6 +114,7 @@ namespace RJW_Menstruation baby.story.HairColor = firstbaby.story.HairColor; baby.story.bodyType = firstbaby.story.bodyType; baby.story.furDef = firstbaby.story.furDef; + baby.story.SkinColorBase = firstbaby.story.SkinColorBase; baby.story.skinColorOverride = firstbaby.story.skinColorOverride; } @@ -133,6 +134,7 @@ namespace RJW_Menstruation PregnancyCommon.ProcessIdenticalSibling(baby, firstbaby); } } + baby.Drawer.renderer.SetAllGraphicsDirty(); babies.Add(baby); // These get cleared out later, but setting the relations now will help keep track of things. baby.SetMother(mother); diff --git a/1.5/source/RJW_Menstruation/RJW_Menstruation/Hediff_MultiplePregnancy.cs b/1.5/source/RJW_Menstruation/RJW_Menstruation/Hediff_MultiplePregnancy.cs index e6d3845..4a71ac0 100644 --- a/1.5/source/RJW_Menstruation/RJW_Menstruation/Hediff_MultiplePregnancy.cs +++ b/1.5/source/RJW_Menstruation/RJW_Menstruation/Hediff_MultiplePregnancy.cs @@ -353,6 +353,7 @@ namespace RJW_Menstruation baby.story.HairColor = firstbaby.story.HairColor; baby.story.bodyType = firstbaby.story.bodyType; baby.story.furDef = firstbaby.story.furDef; + baby.story.SkinColorBase = firstbaby.story.SkinColorBase; baby.story.skinColorOverride = firstbaby.story.skinColorOverride; } @@ -370,6 +371,7 @@ namespace RJW_Menstruation AnimalGeneticsCompatibility.CopyGenes(baby, firstbaby); } } + baby.Drawer.renderer.SetAllGraphicsDirty(); babies.Add(baby); }