From 6e18666387087b28f9f41f5c0cb08b3d188a6591 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Sun, 9 Aug 2020 03:11:01 -0700 Subject: [PATCH] Don't show "double team" options with slave officers the player hasn't appointed yet. --- src/events/RECI/butthole.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/events/RECI/butthole.js b/src/events/RECI/butthole.js index f797aaf8ab3..dca2c363224 100644 --- a/src/events/RECI/butthole.js +++ b/src/events/RECI/butthole.js @@ -233,13 +233,13 @@ App.Events.RECIButthole = class RECIButthole extends App.Events.BaseEvent { (eventSlave.chastityAnus) ? new App.Events.Result(`Remind ${him} of ${his} chastity`, chaste) : new App.Events.Result(), - (eventSlave.ID !== V.HeadGirlID) + (S.HeadGirl && eventSlave.ID !== V.HeadGirlID) ? new App.Events.Result(`Double anal with the Head Girl`, () => DoubleTeam(S.HeadGirl)) : new App.Events.Result(), - (eventSlave.ID !== V.ConcubineID && hasAnyLegs(S.Concubine) && hasAnyArms(S.Concubine) && S.Concubine.fetish !== "mindbroken") + (S.Concubine && eventSlave.ID !== V.ConcubineID && hasAnyLegs(S.Concubine) && hasAnyArms(S.Concubine) && S.Concubine.fetish !== "mindbroken") ? new App.Events.Result(`Double anal with your Concubine`, () => DoubleTeam(S.Concubine)) : new App.Events.Result(), - (eventSlave.ID !== V.BodyguardID) + (S.Bodyguard && eventSlave.ID !== V.BodyguardID) ? new App.Events.Result(`Double anal with your Body Guard`, () => DoubleTeam(S.Bodyguard)) : new App.Events.Result(), new App.Events.Result(`Chat about ${his} ass`, talk), -- GitLab