mirror of
https://github.com/amevarashi/RJW-Sexperience.git
synced 2024-08-14 23:54:08 +00:00
Add sanity check in TryFeedCum
This commit is contained in:
parent
f834ca63a4
commit
beff83656e
1 changed files with 6 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue