Remove unused rape tag from Virgin events

This commit is contained in:
amevarashi 2022-07-08 19:38:28 +05:00
parent 85ed241217
commit df4b55c460
1 changed files with 2 additions and 3 deletions

View File

@ -10,10 +10,9 @@ namespace RJWSexperience.Ideology.Patches
public static void Postfix(Pawn pawn, Pawn partner, SexProps props, int degree) public static void Postfix(Pawn pawn, Pawn partner, SexProps props, int degree)
{ {
string tag = ""; string tag = "";
if (props.isRape) if (props.isRape && pawn != props.pawn)
{ {
if (pawn == props.pawn && props.isRapist) tag += Tag.Rape; tag += Tag.BeenRaped;
else tag += Tag.BeenRaped;
} }
if (!pawn.relations.DirectRelationExists(PawnRelationDefOf.Spouse, partner)) if (!pawn.relations.DirectRelationExists(PawnRelationDefOf.Spouse, partner))
{ {