More accurate debug text for breast growth

This commit is contained in:
lutepickle 2022-03-15 11:13:08 -07:00
parent 4caeec1eaa
commit 91c9f38fd0
2 changed files with 5 additions and 1 deletions

Binary file not shown.

View File

@ -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)