Mirror of 1.4.22 from Lovers Lab

This commit is contained in:
ghostclinic3YTB 2023-04-03 21:48:55 -04:00
parent 5d0da3bc88
commit b501ddfb0f
1119 changed files with 12505 additions and 2543 deletions

View file

@ -403,6 +403,10 @@ namespace SizedApparel
if (h.def == HediffDefOf.PregnantHuman || h.def == HediffDefOf.Pregnant)
return true;
//pawn who Giving birth. the pregnant hediff will be removed when the pawn is in labor
if (h.def == HediffDefOf.PregnancyLabor || h.def == HediffDefOf.PregnancyLaborPushing)
return true;
return h.def.defName.ToLower().Contains("rjw_pregnancy") || h.def.defName.ToLower().EndsWith("pregnant"); // h.def.defName.ToLower().Contains("pregnancy");
}
public static bool isRJWEggHediff(Hediff h)