One less magic number

This commit is contained in:
lutepickle 2022-06-04 18:09:34 -07:00
parent 4ebf45aeb8
commit 156dfc5f3e
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ namespace RJW_Menstruation
const float minmakefilthvalue = 1.0f;
//const int ovarypowerthreshold = 72;
public static readonly int tickInterval = 2500; // an hour
public static readonly int tickInterval = GenDate.TicksPerHour;
public CompProperties_Menstruation Props;
public Stage curStage = Stage.Follicular;
public int curStageHrs = 0;