mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Let climacteric re-apply when anestrus goes back into season
This commit is contained in:
parent
1a875dba1c
commit
aa81fae8bd
1 changed files with 3 additions and 2 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue