mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Climacteric is 20% chance to skip, not 20% chance to ovulate
This commit is contained in:
parent
1aaaf50b64
commit
3646f1135b
2 changed files with 1 additions and 1 deletions
Binary file not shown.
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue