Make the recalculation interval long instead of daily

This commit is contained in:
lutepickle 2023-04-14 08:23:02 -07:00
parent 30329c883b
commit a5bcf696ba
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ namespace RJW_Menstruation
public Stage curStage = Stage.Follicular;
public int curStageTicks = 0; // Actual number of ticks equals this / cycleAcceleration
private int tickInterval = -1;
const int recalculateTickInterval = GenDate.TicksPerDay;
const int recalculateTickInterval = GenTicks.TickLongInterval;
public bool loaded = false;
public bool initError = false;
public int ovarypower = -100000;