mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2024-08-15 00:23:31 +00:00
14 lines
242 B
C#
14 lines
242 B
C#
|
using System;
|
|||
|
using Verse;
|
|||
|
using Verse.AI;
|
|||
|
|
|||
|
namespace RJW_Genes
|
|||
|
{
|
|||
|
public class ThinkNode_ConditionalLowLifeForce : ThinkNode_Conditional
|
|||
|
{
|
|||
|
protected override bool Satisfied(Pawn p)
|
|||
|
{
|
|||
|
return GeneUtility.HasLowLifeForce(p);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|