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 // Time to grow
float growAmount = pregnancySize - breastSizeIncreased; float growAmount = pregnancySize - breastSizeIncreased;
if (growAmount != 0)
debugGrowthStatus = "Growing due to pregnancy"; debugGrowthStatus = "Growing due to pregnancy";
else
debugGrowthStatus = "Pregnant, but not time to grow";
breastSizeIncreased += growAmount; breastSizeIncreased += growAmount;
parent.Severity += 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 // Scenario C: Not (or very early) pregnant and youngest child nonexistent or more than halfway into babyhood, time to shrink
else if (breastSizeIncreased > 0) else if (breastSizeIncreased > 0)