This commit is contained in:
c0ffee 2021-11-17 11:52:07 -08:00
parent 40c79dd0cd
commit ef4b1dc57e
4 changed files with 24 additions and 13 deletions

View file

@ -17,24 +17,27 @@ namespace CRIALactation
if (!LactationUtility.HasMilkableBreasts(otherPawn)) return false;
if(LactationUtility.IsLactating(otherPawn))
if (LactationUtility.IsHucow(otherPawn))
{
return ThoughtState.ActiveAtStage(0);
}
else if (LactationUtility.IsLactating(otherPawn))
{
return ThoughtState.ActiveAtStage(1);
}
if (ExpectationsUtility.CurrentExpectationFor(p).order <= ExpectationDefOf.VeryLow.order)
{
return ThoughtState.ActiveAtStage(1);
return ThoughtState.ActiveAtStage(2);
}
else if (ExpectationsUtility.CurrentExpectationFor(p).order <= ExpectationDefOf.Moderate.order)
{
return ThoughtState.ActiveAtStage(2);
return ThoughtState.ActiveAtStage(3);
}
else
{
return ThoughtState.ActiveAtStage(3);
return ThoughtState.ActiveAtStage(4);
}
}