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); GoNextStage(Stage.Anestrus);
return; return;
} }
if (curStageHrs >= currentIntervalHours) else if (curStageHrs >= currentIntervalHours)
{ {
estrusflag = false; estrusflag = false;
GoNextStage(climacteric ? Stage.ClimactericLuteal : Stage.Luteal); GoNextStage(climacteric ? Stage.ClimactericLuteal : Stage.Luteal);

View file

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