mirror of
https://gitgud.io/LonelyRain/rjw-quirks.git
synced 2024-08-15 00:03:31 +00:00
10 lines
213 B
C#
10 lines
213 B
C#
using RimWorld;
|
|
using Verse;
|
|
|
|
namespace rjwquirks.Modules.Shared.PawnSelectors
|
|
{
|
|
public class IsSleeping : PawnSelector
|
|
{
|
|
public override bool PawnSatisfies(Pawn pawn) => !pawn.Awake();
|
|
}
|
|
}
|