diff --git a/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Menstruation.cs b/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Menstruation.cs index 3249621..8fcd081 100644 --- a/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Menstruation.cs +++ b/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Menstruation.cs @@ -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); } }