Climacteric is 20% chance to skip, not 20% chance to ovulate

This commit is contained in:
lutepickle 2023-03-06 17:52:11 -08:00
parent 1aaaf50b64
commit 3646f1135b
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -290,7 +290,7 @@ namespace RJW_Menstruation
{
float ovulationChance = 1.0f;
if (EggHealth <= 0.0f) return 0.0f;
if (EggHealth < 1.0f / 3.0f) ovulationChance = 0.2f;
if (EggHealth < 1.0f / 3.0f) ovulationChance = 0.8f;
if (ModsConfig.BiotechActive && xxx.is_human(Pawn))
{
if (Pawn.SterileGenes()) return 0.0f;