thought fixes

This commit is contained in:
c0ffee12 2021-07-30 08:28:19 -07:00
parent 1bcd4882c6
commit 7c7a184655
2 changed files with 3 additions and 1 deletions

View File

@ -15,7 +15,9 @@ namespace CRIALactation
protected override ThoughtState ShouldHaveThought(Pawn p, Pawn otherPawn)
{
if(LactationUtility.HasMilkableBreasts(p) && !LactationUtility.IsLactating(p))
if (!LactationUtility.HasMilkableBreasts(otherPawn)) return false;
if(LactationUtility.IsLactating(otherPawn))
{
return ThoughtState.ActiveAtStage(0);