diff --git a/Assemblies/RJW-Events.dll b/Assemblies/RJW-Events.dll index 86dab37..fac724e 100644 Binary files a/Assemblies/RJW-Events.dll and b/Assemblies/RJW-Events.dll differ diff --git a/Defs/TaleDefs/Tales_Sex.xml b/Defs/TaleDefs/Tales_Sex.xml index 952844f..401b352 100644 --- a/Defs/TaleDefs/Tales_Sex.xml +++ b/Defs/TaleDefs/Tales_Sex.xml @@ -11,7 +11,7 @@
  • tale_noun->[ATTENDER_nameDef] attending [ORGANIZER_nameDef]'s orgy
  • -
  • tale_noun->[ATTENDER_nameDef] having sex with [ORGANIZER_nameDef] at an orgy
  • +
  • tale_noun->[ATTENDER_nameDef] having sex with [ORGANIZER_nameDef] at their orgy
  • image->[ATTENDER_nameFull] making out with [ORGANIZER_nameFull] [circumstance_group]
  • image->[ATTENDER_nameFull] getting a drink from [ORGANIZER_nameFull] [circumstance_group]
  • image->[ATTENDER_nameFull] chatting with [ORGANIZER_nameFull] [circumstance_group]
  • diff --git a/Source/JobDrivers/JobDriver_OrgySex.cs b/Source/JobDrivers/JobDriver_OrgySex.cs index 500f69a..e6b8c73 100644 --- a/Source/JobDrivers/JobDriver_OrgySex.cs +++ b/Source/JobDrivers/JobDriver_OrgySex.cs @@ -93,7 +93,11 @@ namespace RJW_Events { this.End(); if(LordUtility.GetLord(pawn)?.LordJob != null && LordUtility.GetLord(pawn).LordJob is LordJob_Joinable_Orgy && !(LordUtility.GetLord(pawn).CurLordToil is LordToil_End)) + { SexUtility.DrawNude(pawn); + SexUtility.DrawNude(Partner); + } + }); yield return toil; yield return new Toil diff --git a/Source/JobDrivers/JobDriver_OrgySexReceiver.cs b/Source/JobDrivers/JobDriver_OrgySexReceiver.cs index 112957e..6ee70fc 100644 --- a/Source/JobDrivers/JobDriver_OrgySexReceiver.cs +++ b/Source/JobDrivers/JobDriver_OrgySexReceiver.cs @@ -10,7 +10,7 @@ using Verse.AI; namespace RJW_Events { - class JobDriver_OrgySexReceiver : JobDriver_SexBaseReciever + public class JobDriver_OrgySexReceiver : JobDriver_SexBaseReciever { protected override IEnumerable MakeNewToils()