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;
}