From beff83656ea5ab517ec3ca158e83046704dfb195 Mon Sep 17 00:00:00 2001 From: amevarashi Date: Thu, 2 Jun 2022 22:48:50 +0500 Subject: [PATCH] Add sanity check in TryFeedCum --- RJWSexperience/RJWSexperience/Patches/RJW_Patch.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/RJWSexperience/RJWSexperience/Patches/RJW_Patch.cs b/RJWSexperience/RJWSexperience/Patches/RJW_Patch.cs index 4790fff..5e17c81 100644 --- a/RJWSexperience/RJWSexperience/Patches/RJW_Patch.cs +++ b/RJWSexperience/RJWSexperience/Patches/RJW_Patch.cs @@ -110,7 +110,12 @@ namespace RJWSexperience if (!PawnsPenisIsInPartnersMouth(props)) return; - CumUtility.FeedCum(props.partner, CumUtility.GetOnePartCumVolume(props.pawn)); + float cumAmount = CumUtility.GetOnePartCumVolume(props.pawn); + + if (cumAmount <= 0) + return; + + CumUtility.FeedCum(props.partner, cumAmount); } private static bool PawnsPenisIsInPartnersMouth(SexProps props)