Let climacteric re-apply when anestrus goes back into season

This commit is contained in:
lutepickle 2022-07-14 18:32:14 -07:00
parent 1a875dba1c
commit aa81fae8bd

View file

@ -1715,13 +1715,14 @@ namespace RJW_Menstruation
protected void GoFollicularOrBleeding() protected void GoFollicularOrBleeding()
{ {
bool climacteric = Configurations.EnableMenopause && ovarypower < OvaryPowerThreshold;
if (Props.bleedingIntervalDays == 0) if (Props.bleedingIntervalDays == 0)
{ {
GoNextStage(Stage.Follicular); GoNextStage(climacteric ? Stage.ClimactericFollicular : Stage.Follicular);
} }
else else
{ {
GoNextStage(Stage.Bleeding); GoNextStage(climacteric ? Stage.ClimactericBleeding : Stage.Bleeding);
} }
} }