One less magic number in OvaryPowerThreshold

This commit is contained in:
lutepickle 2022-09-02 10:53:35 -07:00
parent afe603058e
commit 5c8fe83399
1 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,6 @@ namespace RJW_Menstruation
get
{
if (opcache >= 0) return opcache;
// Climacteric will set in 6 (human) years before egg exhaustion
float avglittersize;
try
{
@ -150,9 +149,10 @@ namespace RJW_Menstruation
// Any exceptions in that will have been reported elsewhere in the code by now
avglittersize = 1.0f;
};
const float yearsBeforeMenopause = 6.0f;
opcache = (int)(RaceCyclesPerYear() *
avglittersize *
6f *
yearsBeforeMenopause *
(Pawn.def.race.lifeExpectancy / ThingDefOf.Human.race.lifeExpectancy));
return opcache;
}