From 450c835d2b2f36f83bf4b75030ba1c4aa6782c00 Mon Sep 17 00:00:00 2001 From: amevarashi Date: Sat, 29 Oct 2022 16:03:42 +0500 Subject: [PATCH] Fixed Sexual Proselyzing --- Source/IdeologyAddon/Patches/RJW_Patch_Ideo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/IdeologyAddon/Patches/RJW_Patch_Ideo.cs b/Source/IdeologyAddon/Patches/RJW_Patch_Ideo.cs index 60e1595..1734583 100644 --- a/Source/IdeologyAddon/Patches/RJW_Patch_Ideo.cs +++ b/Source/IdeologyAddon/Patches/RJW_Patch_Ideo.cs @@ -238,7 +238,7 @@ namespace RJWSexperience.Ideology.Patches public static void Postfix(SexProps props) { // ShortCuts: Exit Early if Pawn or Partner are null (can happen with Animals or Masturbation) - if (props.pawn != null && props.hasPartner()) + if (props.pawn == null || !props.hasPartner()) return; if (props.partner.Ideo?.HasPrecept(VariousDefOf.ProselyzingByOrgasm) == true)