Have periodic ovulators properly go into anestrus if they don't bleed

This commit is contained in:
lutepickle 2023-05-07 09:32:29 -07:00
parent d752bcfed4
commit 259201ec54
2 changed files with 8 additions and 0 deletions

View File

@ -77,6 +77,13 @@ namespace RJW_Menstruation
else return base.TicksToNextStage();
}
protected override void LutealAction()
{
base.LutealAction();
if (curStage == Stage.Follicular)
GoNextStage(Stage.Anestrus);
}
protected override void BleedingAction()
{
base.BleedingAction();

View File

@ -1,6 +1,7 @@
Version 1.0.9.1
- Add new ideology-related thoughts with the sexperience-ideology mod.
- Using the egg restoration biosculptor cycle will give a small mood buff.
- Periodic ovulators that don't bleed will properly enter anestrus after their luteal stage.
Version 1.0.9.0
- Fix errors when opening the womb dialog of some low fertility pawns.