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
1 changed files with 3 additions and 2 deletions

View File

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