Add sanity check in TryFeedCum

This commit is contained in:
amevarashi 2022-06-02 22:48:50 +05:00
parent f834ca63a4
commit beff83656e
1 changed files with 6 additions and 1 deletions

View File

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