balance changes: no need to redesignate induce lactation, relactate percent now starts at 90%, nonadults no longer get debuffs

This commit is contained in:
c0ffee 2021-11-23 16:50:33 -08:00
parent e82456570e
commit 5d3e7d94a3
4 changed files with 16 additions and 13 deletions

View file

@ -36,7 +36,12 @@ namespace CRIALactation
return ThoughtState.ActiveAtStage(1);
}
if(ExpectationsUtility.CurrentExpectationFor(p).order <= ExpectationDefOf.VeryLow.order)
if (!p.ageTracker.Adult)
{
return false;
}
if (ExpectationsUtility.CurrentExpectationFor(p).order <= ExpectationDefOf.VeryLow.order)
{
return ThoughtState.ActiveAtStage(2);
}