Fix rape history recording

This commit is contained in:
amevarashi 2022-02-25 19:29:08 +05:00
parent 527da1ac0f
commit fabfa366a5
1 changed files with 2 additions and 5 deletions

View File

@ -758,19 +758,16 @@ namespace RJWSexperience
totalsexhad++;
if (props.isRape)
{
RJWUtility.DetermineGiversAndReceivers(props, out Pawn giver, out Pawn receiver);
if (partner == giver)
if (partner == props.interactionInitiator)
{
rapedme++;
}
else if (partner == receiver)
else if (partner == props.interactionRecipient)
{
raped++;
}
}
recentsextickabs = GenTicks.TicksAbs;
}
public void RecordSatisfaction(SexProps props, float satisfaction)