mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Have the breasts grow and shrink for Biotech pregnancies, too
This commit is contained in:
parent
06039238d2
commit
60343e8b3f
1 changed files with 2 additions and 2 deletions
|
@ -257,7 +257,7 @@ namespace RJW_Menstruation
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Scenario B: Pregnant, grow in the second half of first trimester
|
// Scenario B: Pregnant, grow in the second half of first trimester
|
||||||
else if (Pawn.IsRJWPregnant())
|
else if (Pawn.IsRJWPregnant() || Pawn.IsBiotechPregnant())
|
||||||
{
|
{
|
||||||
float pregnancySize = Mathf.InverseLerp(breastGrowthStart, breastGrowthEnd, Pawn.GetFarthestPregnancyProgress()) * MaxBreastIncrement;
|
float pregnancySize = Mathf.InverseLerp(breastGrowthStart, breastGrowthEnd, Pawn.GetFarthestPregnancyProgress()) * MaxBreastIncrement;
|
||||||
if (breastSizeIncreased > pregnancySize)
|
if (breastSizeIncreased > pregnancySize)
|
||||||
|
@ -293,7 +293,7 @@ namespace RJW_Menstruation
|
||||||
float newNippleProgress;
|
float newNippleProgress;
|
||||||
if (ageOfLastBirth + BabyHalfAge * GenDate.TicksPerYear > Pawn.ageTracker.AgeBiologicalTicks)
|
if (ageOfLastBirth + BabyHalfAge * GenDate.TicksPerYear > Pawn.ageTracker.AgeBiologicalTicks)
|
||||||
newNippleProgress = 1f;
|
newNippleProgress = 1f;
|
||||||
else if (Pawn.IsRJWPregnant())
|
else if (Pawn.IsRJWPregnant() || Pawn.IsBiotechPregnant())
|
||||||
newNippleProgress = nippleTransitions.Evaluate(Pawn.GetFarthestPregnancyProgress());
|
newNippleProgress = nippleTransitions.Evaluate(Pawn.GetFarthestPregnancyProgress());
|
||||||
else
|
else
|
||||||
newNippleProgress = 0f;
|
newNippleProgress = 0f;
|
||||||
|
|
Loading…
Reference in a new issue