Fixed Sexual Proselyzing

This commit is contained in:
amevarashi 2022-10-29 16:03:42 +05:00
parent bf7f6a29fb
commit 450c835d2b
1 changed files with 1 additions and 1 deletions

View File

@ -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)