Just remove the ovarypower/ovulated comparsion. It's fine if ovarypower goes negative

This commit is contained in:
lutepickle 2023-03-20 16:27:41 -07:00
parent e6d2446376
commit 80a987b0bd
3 changed files with 3 additions and 2 deletions

View File

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

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Manifest>
<identifier>RJW Menstruation</identifier>
<version>1.0.8.9</version>
<version>1.0.9.0</version>
<dependencies>
</dependencies>
<incompatibleWith />

View File

@ -1,3 +1,5 @@
Version 1.0.9.0
Version 1.0.8.9
- Fix bug that sent pawns into menopause very early. Please use the recalculate ovary power dev action to restore lost eggs.