Fix wrong comparison in OvulatoryAction

This commit is contained in:
lutepickle 2023-03-20 16:17:16 -07:00
parent cb8a001cdf
commit 2ac4e1f8e5
3 changed files with 2 additions and 1 deletions

Binary file not shown.

View File

@ -1610,7 +1610,7 @@ namespace RJW_Menstruation
eggs.Add(new Egg((int)(EggLifespanHours / CycleFactor)));
++ovulated;
}
if(ovulated < ovarypower) ovulated = Math.Max(ovarypower, eggstack);
if(ovulated > ovarypower) ovulated = Math.Min(ovarypower, eggstack);
ovarypower -= ovulated;
eggstack = 0;

View File

@ -1,4 +1,5 @@
Version 1.0.8.9
- Fix bug that sent pawns into menopause very early.
Version 1.0.8.8
- Fix pawns skipping straight to menopause instead of going through climacteric stages.