diff --git a/1.3/Assemblies/RJW_Menstruation.dll b/1.3/Assemblies/RJW_Menstruation.dll index 6d0ad00..bb7ff45 100644 Binary files a/1.3/Assemblies/RJW_Menstruation.dll and b/1.3/Assemblies/RJW_Menstruation.dll differ diff --git a/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Breast.cs b/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Breast.cs index 4fe8dfa..716b9a2 100644 --- a/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Breast.cs +++ b/1.3/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Breast.cs @@ -291,10 +291,14 @@ namespace RJW_Menstruation { // Time to grow float growAmount = pregnancySize - breastSizeIncreased; - debugGrowthStatus = "Growing due to pregnancy"; + if (growAmount != 0) + debugGrowthStatus = "Growing due to pregnancy"; + else + debugGrowthStatus = "Pregnant, but not time to grow"; breastSizeIncreased += growAmount; parent.Severity += growAmount; } + else debugGrowthStatus = "Pregnant and full size"; } // Scenario C: Not (or very early) pregnant and youngest child nonexistent or more than halfway into babyhood, time to shrink else if (breastSizeIncreased > 0)