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 b13459e..24215ea 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 @@ -904,23 +904,19 @@ namespace RJW_Menstruation /// Fertilize eggs and return the result /// /// - protected bool FertilizationCheck() + protected void FertilizationCheck() { if (!eggs.NullOrEmpty()) { - bool onefertilized = false; foreach (Egg egg in eggs) { if (!egg.fertilized) egg.fertilizer = Fertilize(); if (egg.fertilizer != null) { egg.fertilized = true; - onefertilized = true; } } - return onefertilized; } - else return false; } public void Initialize()