From 3fa7bf349ee8b98f45ec7d66b934c356db674d60 Mon Sep 17 00:00:00 2001 From: ezsh <ezsh.junk@gmail.com> Date: Thu, 21 May 2020 03:27:12 +0200 Subject: [PATCH] Add HG, BG, and recruiter to the "all" penthouse page This make them visible in the archaic untabbed UI and fixes the second part of the #1810. --- src/js/slaveListing.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/js/slaveListing.js b/src/js/slaveListing.js index e5208fd3b3e..9aa9560067b 100644 --- a/src/js/slaveListing.js +++ b/src/js/slaveListing.js @@ -1008,6 +1008,15 @@ App.UI.SlaveList.penthousePage = function() { function allTab() { const penthouseSlavesIDs = [...ph.employeesIDs()]; + if (S.HeadGirl) { + penthouseSlavesIDs.push(S.HeadGirl.ID); + } + if (S.Recruiter) { + penthouseSlavesIDs.push(S.Recruiter.ID); + } + if (S.Bodyguard) { + penthouseSlavesIDs.push(S.Bodyguard.ID); + } SlaveSort.IDs(penthouseSlavesIDs); return makeTabDesc('all', `All${V.useSlaveSummaryTabs > 0 ? ` (${penthouseSlavesIDs.length})` : ""}`, App.UI.SlaveList.render.listDOM(penthouseSlavesIDs, [], App.UI.SlaveList.SlaveInteract.penthouseInteract)); -- GitLab