diff --git a/src/js/slaveListing.js b/src/js/slaveListing.js index e5208fd3b3e0ea7c6494343ac7e2e0794cdbf91d..9aa9560067b09220357b15590088ebf8824e817e 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));