mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Rearrange LutealAction to let the stage end with fertilized eggs
This commit is contained in:
parent
9f66a3ea52
commit
1133255b0a
2 changed files with 25 additions and 24 deletions
Binary file not shown.
|
@ -1392,30 +1392,7 @@ namespace RJW_Menstruation
|
||||||
RemoveClimactericEffect();
|
RemoveClimactericEffect();
|
||||||
StayCurrentStage();
|
StayCurrentStage();
|
||||||
}
|
}
|
||||||
else if (!eggs.NullOrEmpty())
|
else if (curStageHrs > currentIntervalHours)
|
||||||
{
|
|
||||||
FertilizationCheck();
|
|
||||||
EggDecay();
|
|
||||||
if (Implant())
|
|
||||||
{
|
|
||||||
if (Breast != null)
|
|
||||||
{
|
|
||||||
Breast.PregnancyTransition();
|
|
||||||
}
|
|
||||||
GoNextStage(Stage.Pregnant);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
curStageHrs += Configurations.CycleAcceleration;
|
|
||||||
StayCurrentStage();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (curStageHrs <= currentIntervalHours)
|
|
||||||
{
|
|
||||||
curStageHrs += Configurations.CycleAcceleration;
|
|
||||||
StayCurrentStage();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
eggs.Clear();
|
eggs.Clear();
|
||||||
if (Props.bleedingIntervalDays == 0)
|
if (Props.bleedingIntervalDays == 0)
|
||||||
|
@ -1435,6 +1412,30 @@ namespace RJW_Menstruation
|
||||||
GoNextStage(climacteric ? Stage.ClimactericBleeding : Stage.Bleeding);
|
GoNextStage(climacteric ? Stage.ClimactericBleeding : Stage.Bleeding);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (!eggs.NullOrEmpty())
|
||||||
|
{
|
||||||
|
FertilizationCheck();
|
||||||
|
EggDecay();
|
||||||
|
if (Implant())
|
||||||
|
{
|
||||||
|
if (Breast != null)
|
||||||
|
{
|
||||||
|
Breast.PregnancyTransition();
|
||||||
|
}
|
||||||
|
GoNextStage(Stage.Pregnant);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
curStageHrs += Configurations.CycleAcceleration;
|
||||||
|
StayCurrentStage();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
curStageHrs += Configurations.CycleAcceleration;
|
||||||
|
StayCurrentStage();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected virtual void BleedingAction(bool climacteric)
|
protected virtual void BleedingAction(bool climacteric)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue