Properly put a space between the follicular description and the climacteric description for induced ovulators

This commit is contained in:
lutepickle 2023-10-26 16:32:28 -07:00
parent 9be4bc8e54
commit 89ecbcd5aa
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ namespace RJW_Menstruation
switch (CurrentVisibleStage)
{
case Stage.Follicular:
return Translations.Stage_Follicular_Induced_Desc + (EggHealth < 1f ? Translations.Stage_Climacteric_Desc : "");
return Translations.Stage_Follicular_Induced_Desc + (EggHealth < 1f ? " " + Translations.Stage_Climacteric_Desc : "");
default:
return base.GetCurStageDesc;
}

View File

@ -73,7 +73,7 @@ namespace RJW_Menstruation
protected override int TicksToNextStage()
{
if (curStage == Stage.Anestrus && ticksToNextCycle > 0) return ticksToNextCycle / Configurations.CycleAcceleration;
if (curStage == Stage.Anestrus && ticksToNextCycle > 0) return ticksToNextCycle / Configurations.CycleAcceleration;
else return base.TicksToNextStage();
}