mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
More accurate debug text for breast growth
This commit is contained in:
parent
4caeec1eaa
commit
91c9f38fd0
2 changed files with 5 additions and 1 deletions
Binary file not shown.
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue