Refactor InfertileAction

This commit is contained in:
lutepickle 2023-10-28 17:19:09 -07:00
parent 441ee1de48
commit 0a24b5556f
1 changed files with 3 additions and 6 deletions

View File

@ -1793,14 +1793,11 @@ namespace RJW_Menstruation
protected virtual void InfertileAction()
{
if (ShouldBeInfertile())
{
StayCurrentStageConst(Stage.Infertile);
}
else if (IsBreedingSeason())
GoNextStage(Stage.Follicular);
else
{
bool breedingSeason = IsBreedingSeason();
GoNextStage(breedingSeason ? Stage.Follicular : Stage.Anestrus, breedingSeason ? (int?)null : 0);
}
GoNextStage(Stage.Anestrus);
}
protected virtual void AnestrusAction()