Min is not max. Again

This commit is contained in:
lutepickle 2022-11-05 07:57:44 -07:00
parent 2a7feede8b
commit b9494a9acc

View file

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