Have a pawn that becomes fertile go into anestrus if they're out of season.

This commit is contained in:
lutepickle 2022-06-25 20:07:23 -07:00
parent 14174396b0
commit f503deb09e
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -1525,7 +1525,7 @@ namespace RJW_Menstruation
{
StayCurrentStageConst(Stage.Young);
}
else GoNextStage(Stage.Follicular);
else GoNextStage(IsBreedingSeason() ? Stage.Follicular : Stage.Anestrus);
}
protected virtual void ClimactericFollicularAction()