mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Missing elses in Follicular actions
This commit is contained in:
parent
96c81c70bf
commit
9f66a3ea52
3 changed files with 2 additions and 2 deletions
Binary file not shown.
|
@ -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);
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue