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 0695ee8..71c57d1 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 @@ -422,11 +422,7 @@ namespace RJW_Menstruation if (eggs.NullOrEmpty()) return ""; string res = ""; - int fertilized = 0; - foreach (Egg egg in eggs) - { - if (egg.fertilized) fertilized++; - } + int fertilized = eggs.Count(egg => egg.fertilized); if (fertilized != 0) res += fertilized + " " + Translations.Dialog_WombInfo05; if (fertilized != 0 && eggs.Count - fertilized != 0) res += ", "; if (cums.NullOrEmpty() || TotalFertCum == 0)