Mirror of 1.4.23 from Lovers Lab

This commit is contained in:
ghostclinic3YTB 2023-04-03 21:48:56 -04:00
parent b501ddfb0f
commit e47a1fc4f0
730 changed files with 646 additions and 182 deletions

View file

@ -1542,12 +1542,22 @@ namespace SizedApparel
foreach(var addon in bodyAddons)
{
if(addon.bodyPartOf == SizedApparelBodyPartOf.Breasts)
if(addon.bodyPartOf == SizedApparelBodyPartOf.Breasts) //Include SizedApparelBodyPartOf.Nipples
{
addon.SetHediffData(breastHediff.def.defName, SizedApparelUtility.BreastSeverityInt(breastHediff.Severity), SizedApparelUtility.BreastSeverityInt(BreastSeverityCache), breastvar?.variation);
addon.SetBone(skeleton?.FindBone("Breasts"));
addon.UpdateGraphic();
}
if (SizedApparelPatch.MenstruationActive)
{
//Nipple Patch?
}
}
//bodyPartBreasts.SetHediffData(breastHediff.def.defName, SizedApparelUtility.BreastSeverityInt(breastHediff.Severity), SizedApparelUtility.BreastSeverityInt(breastSeverityCapped), breastvar?.variation);
//bodyPartBreasts.UpdateGraphic();
@ -1563,6 +1573,10 @@ namespace SizedApparel
}
}
}