mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Don't reset the timer on periodic ovulators until it's breeding season
This commit is contained in:
parent
b07d12b8f8
commit
95bdf4ca73
1 changed files with 2 additions and 2 deletions
|
@ -104,10 +104,10 @@ namespace RJW_Menstruation
|
|||
|
||||
protected override void AnestrusAction()
|
||||
{
|
||||
if (ticksToNextCycle <= 0)
|
||||
if (ticksToNextCycle <= 0 && IsBreedingSeason())
|
||||
{
|
||||
ticksToNextCycle = (int)(averageCycleIntervalTicks * (1 + Rand.Range(-cycleVariability, cycleVariability)));
|
||||
if (IsBreedingSeason()) GoNextStage(Stage.Follicular);
|
||||
GoNextStage(Stage.Follicular);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue