more tweaks to ensure rendering properly

This commit is contained in:
c0ffee 2021-04-12 13:01:36 -07:00
parent 02020d2385
commit eb7fe3bfae
4 changed files with 6 additions and 2 deletions

Binary file not shown.

View File

@ -11,7 +11,7 @@
<rulePack>
<rulesStrings>
<li>tale_noun->[ATTENDER_nameDef] attending [ORGANIZER_nameDef]'s orgy</li>
<li>tale_noun->[ATTENDER_nameDef] having sex with [ORGANIZER_nameDef] at an orgy</li>
<li>tale_noun->[ATTENDER_nameDef] having sex with [ORGANIZER_nameDef] at their orgy</li>
<li>image->[ATTENDER_nameFull] making out with [ORGANIZER_nameFull] [circumstance_group]</li>
<li>image->[ATTENDER_nameFull] getting a drink from [ORGANIZER_nameFull] [circumstance_group]</li>
<li>image->[ATTENDER_nameFull] chatting with [ORGANIZER_nameFull] [circumstance_group]</li>

View File

@ -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

View File

@ -10,7 +10,7 @@ using Verse.AI;
namespace RJW_Events
{
class JobDriver_OrgySexReceiver : JobDriver_SexBaseReciever
public class JobDriver_OrgySexReceiver : JobDriver_SexBaseReciever
{
protected override IEnumerable<Toil> MakeNewToils()