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)