rjw-quirks/RJW-Quirks/Modules/Quirks/Comps/ThoughtAdder_OnSexEvent_Non...

10 lines
252 B
C#
Raw Normal View History

2022-11-01 16:15:06 +00:00
using rjw;
namespace rjwquirks.Modules.Quirks.Comps
{
public class ThoughtAdder_OnSexEvent_NonPreferred : ThoughtAdder_OnSexEvent
{
public override bool ShouldApplyThought(SexProps props) => !parent.IsSatisfiedBySex(props);
}
}