mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Have ShouldBeInEstrus properly multiply the egg lifespan days by 24
This commit is contained in:
parent
ffee2e8149
commit
8cb4fc6b4e
3 changed files with 2 additions and 2 deletions
Binary file not shown.
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue