Move application of cramp pain to after the switch to bleeding so the duration can be properly calculated

This commit is contained in:
lutepickle 2022-09-09 06:17:02 -07:00
parent c081e1e9b9
commit 49db91ca4d
2 changed files with 2 additions and 1 deletions

View File

@ -1438,11 +1438,11 @@ namespace RJW_Menstruation
} }
else else
{ {
GoNextStage(Stage.Bleeding);
if (crampPain >= 0.05f) if (crampPain >= 0.05f)
{ {
AddCrampPain(); AddCrampPain();
} }
GoNextStage(Stage.Bleeding);
} }
} }
else if (!eggs.NullOrEmpty()) else if (!eggs.NullOrEmpty())

View File

@ -1,5 +1,6 @@
Version 1.0.7.5 Version 1.0.7.5
- Fix error when one womb's concealed estrus is overwritten by another womb's visible estrus. - Fix error when one womb's concealed estrus is overwritten by another womb's visible estrus.
- Properly calculate cramp pain falloff again.
- Climacteric and menopause are now per-womb. Their effect on overall sex drive and satisfaction will depend on the health of any other wombs. - Climacteric and menopause are now per-womb. Their effect on overall sex drive and satisfaction will depend on the health of any other wombs.
- Added new property to vaginas to multiply the number of eggs available. Archotech vaginas will have quadruple the normal amount. - Added new property to vaginas to multiply the number of eggs available. Archotech vaginas will have quadruple the normal amount.