mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Have luteal advance at curStageHrs == currentIntervalHours for consistency with the other stages
This commit is contained in:
parent
def93aa218
commit
b3ffe9afed
1 changed files with 1 additions and 1 deletions
|
@ -1480,7 +1480,7 @@ namespace RJW_Menstruation
|
||||||
|
|
||||||
protected virtual void LutealAction()
|
protected virtual void LutealAction()
|
||||||
{
|
{
|
||||||
if (curStageHrs > currentIntervalHours)
|
if (curStageHrs >= currentIntervalHours)
|
||||||
{
|
{
|
||||||
eggs.Clear();
|
eggs.Clear();
|
||||||
if (EggHealth < 1f / 4f || (EggHealth < 1f / 3f && Rand.Range(0.0f, 1.0f) < 0.3f)) //skips bleeding
|
if (EggHealth < 1f / 4f || (EggHealth < 1f / 3f && Rand.Range(0.0f, 1.0f) < 0.3f)) //skips bleeding
|
||||||
|
|
Loading…
Reference in a new issue