Have ShouldBeInEstrus properly multiply the egg lifespan days by 24

This commit is contained in:
lutepickle 2022-09-03 19:13:58 -07:00
parent ffee2e8149
commit 8cb4fc6b4e
3 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -98,7 +98,7 @@ namespace RJW_Menstruation
return true;
case Stage.Luteal:
case Stage.ClimactericLuteal:
return IsEggExist && curStageHrs < Props.eggLifespanDays;
return IsEggExist && curStageHrs < Props.eggLifespanDays * 24;
default:
return false;
}

View File

@ -1080,7 +1080,7 @@ namespace RJW_Menstruation
return true;
case Stage.Luteal:
case Stage.ClimactericLuteal:
return curStageHrs < Props.eggLifespanDays;
return curStageHrs < Props.eggLifespanDays * 24;
default:
return false;
}