Fix stage hours in GetEggIcon

This commit is contained in:
lutepickle 2022-07-07 11:09:42 -07:00
parent 5c1fb93613
commit 07221e01a8
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ namespace RJW_Menstruation
case HediffComp_Menstruation.Stage.ClimactericFollicular:
if (!includeOvary) break;
if (comp is HediffComp_InducedOvulator) break;
if (comp.curStageHrs > comp.FollicularIntervalHours - 30) // Approximate time for ovulation to occur
if (comp.curStageHrs > comp.CurStageIntervalHours - 30) // Approximate time for ovulation to occur
return ContentFinder<Texture2D>.Get("Ovaries/Ovary_01", true);
else break;
case HediffComp_Menstruation.Stage.Ovulatory: