diff --git a/1.3/Assemblies/RJW_Menstruation.dll b/1.3/Assemblies/RJW_Menstruation.dll index 666eae2..fdedd90 100644 Binary files a/1.3/Assemblies/RJW_Menstruation.dll and b/1.3/Assemblies/RJW_Menstruation.dll differ diff --git a/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_InducedOvulator.cs b/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_InducedOvulator.cs index a242f70..a2d7c06 100644 --- a/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_InducedOvulator.cs +++ b/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_InducedOvulator.cs @@ -98,7 +98,7 @@ namespace RJW_Menstruation return true; case Stage.Luteal: case Stage.ClimactericLuteal: - return IsEggExist && curStageHrs < Props.eggLifespanDays; + return IsEggExist && curStageHrs < Props.eggLifespanDays * 24; default: return false; } diff --git a/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Menstruation.cs b/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Menstruation.cs index f551e05..fbb76a7 100644 --- a/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Menstruation.cs +++ b/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Menstruation.cs @@ -1080,7 +1080,7 @@ namespace RJW_Menstruation return true; case Stage.Luteal: case Stage.ClimactericLuteal: - return curStageHrs < Props.eggLifespanDays; + return curStageHrs < Props.eggLifespanDays * 24; default: return false; }