mirror of
https://gitgud.io/c0ffeeeeeeee/coffees-rjw-ideology-addons.git
synced 2024-08-14 23:57:38 +00:00
bugfixes
This commit is contained in:
parent
40c79dd0cd
commit
ef4b1dc57e
4 changed files with 24 additions and 13 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue