mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Format GetCumsInfo's return a little better
This commit is contained in:
parent
523a6a166c
commit
a0b2e224bc
1 changed files with 2 additions and 2 deletions
|
@ -283,8 +283,8 @@ namespace RJW_Menstruation
|
||||||
if (cums.NullOrEmpty()) yield return Translations.Info_noCum;
|
if (cums.NullOrEmpty()) yield return Translations.Info_noCum;
|
||||||
else foreach (Cum cum in cums)
|
else foreach (Cum cum in cums)
|
||||||
{
|
{
|
||||||
if (!cum.notcum) yield return String.Format(cum.pawn?.Label + ": {0:0.##}ml", cum.Volume);
|
if (!cum.notcum) yield return string.Format("{0}: {1:0.##}ml", cum.pawn?.Label, cum.Volume);
|
||||||
else yield return String.Format(cum.notcumLabel + ": {0:0.##}ml", cum.Volume);
|
else yield return string.Format("{0}: {1:0.##}ml", cum.notcumLabel, cum.Volume);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue