This commit is contained in:
dominiclopez391 2021-09-09 08:14:42 -07:00
parent adbc4f8f7b
commit c44affc2e0
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -79,7 +79,7 @@ namespace RJW_Events
{
this.Partner.pather.StopDead();
this.Partner.jobs.curDriver.asleep = false;
this.usedCondom = (CondomUtility.TryUseCondom(this.pawn) || CondomUtility.TryUseCondom(this.Partner));
this.Sexprops.usedCondom = (CondomUtility.TryUseCondom(this.pawn) || CondomUtility.TryUseCondom(this.Partner));
this.Start();
};
toil.AddPreTickAction(delegate
@ -111,7 +111,7 @@ namespace RJW_Events
{
initAction = delegate ()
{
SexUtility.ProcessSex(this.pawn, this.Partner, this.usedCondom, this.isRape, false, false, this.sexType);
SexUtility.ProcessSex(this.Sexprops);
},
defaultCompleteMode = ToilCompleteMode.Instant
};