mirror of
https://github.com/amevarashi/RJW-Sexperience.git
synced 2024-08-14 23:54:08 +00:00
Fix rape history recording
This commit is contained in:
parent
527da1ac0f
commit
fabfa366a5
1 changed files with 2 additions and 5 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue