mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Properly put a space between the follicular description and the climacteric description for induced ovulators
This commit is contained in:
parent
9be4bc8e54
commit
89ecbcd5aa
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue