Don't show menopause for infertile vaginas (e.g. bionics)

This commit is contained in:
lutepickle 2022-09-05 19:08:43 -07:00
parent 450d7da36c
commit 1b0c25bc46
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ namespace RJW_Menstruation
{ {
get get
{ {
if (!Configurations.EnableMenopause) return Mathf.Min(1.0f, ovarypower / OvaryPowerThreshold); if (!Configurations.EnableMenopause || Props.infertile) return Mathf.Min(1.0f, ovarypower / OvaryPowerThreshold);
else return ovarypower / OvaryPowerThreshold; else return ovarypower / OvaryPowerThreshold;
} }
} }