rjw-quirks/RJW-Quirks/Modules/Quirks/SexSelectors/Clothed.cs

10 lines
214 B
C#

using rjw;
namespace rjwquirks.Modules.Quirks.SexSelectors
{
public class Clothed : SexSelector
{
public override bool SexSatisfies(SexProps sexProps) => !sexProps.pawn.apparel.PsychologicallyNude;
}
}