Set a newly initialized pawn to anestrus when out of season.

This commit is contained in:
lutepickle 2022-05-28 17:55:13 -07:00
parent b6f220b30b
commit 72e1712394
2 changed files with 1 additions and 0 deletions

Binary file not shown.

View File

@ -893,6 +893,7 @@ namespace RJW_Menstruation
{
follicularIntervalhours = PeriodRandomizer(Props.folicularIntervalDays * 24, Props.deviationFactor);
if (parent.pawn.health.capacities.GetLevel(xxx.reproduction) <= 0) curStage = Stage.Young;
else if (!IsBreedingSeason()) curStage = Stage.Anestrus;
else curStage = RandomStage();
}