mirror of
https://github.com/amevarashi/RJW-Sexperience.git
synced 2024-08-14 23:54:08 +00:00
- fisting removes the virginity of the receiving virgin female partner
This commit is contained in:
parent
b6d34be263
commit
25a4e0786c
2 changed files with 10 additions and 1 deletions
Binary file not shown.
|
@ -101,7 +101,16 @@ namespace RJWSexperience
|
|||
{
|
||||
__instance.pawn.TryRemoveVirginity(__instance.Partner, __instance.Sexprops);
|
||||
__instance.Partner.TryRemoveVirginity(__instance.pawn, __instance.Sexprops);
|
||||
}
|
||||
} else if(__instance.Sexprops.sexType == xxx.rjwSextype.Fisting)
|
||||
{
|
||||
//check if receiver is a virgin female..
|
||||
Pawn receiver = __instance.Sexprops.IsInitiator() ? __instance.Partner : __instance.pawn;
|
||||
if (receiver != null && receiver.gender == Gender.Female && receiver.IsVirgin())
|
||||
{
|
||||
Pawn initiator = __instance.Sexprops.IsInitiator() ? __instance.pawn : __instance.Partner;
|
||||
receiver.TryRemoveVirginity(initiator, __instance.Sexprops);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// check if both pawn are male -> anal used as alternative virginity remover
|
||||
|
|
Loading…
Reference in a new issue