Missing elses in Follicular actions

This commit is contained in:
lutepickle 2022-07-08 18:43:13 -07:00
parent 96c81c70bf
commit 9f66a3ea52
3 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -71,7 +71,7 @@ namespace RJW_Menstruation
GoNextStage(Stage.Anestrus);
return;
}
if (curStageHrs >= currentIntervalHours)
else if (curStageHrs >= currentIntervalHours)
{
estrusflag = false;
GoNextStage(climacteric ? Stage.ClimactericLuteal : Stage.Luteal);

View File

@ -1315,7 +1315,7 @@ namespace RJW_Menstruation
GoNextStage(Stage.Anestrus);
return;
}
if (curStageHrs >= currentIntervalHours)
else if (curStageHrs >= currentIntervalHours)
{
GoNextStage(Stage.Ovulatory);
}