From 78452bfa69fc9dce585075360f4be53f2bcf71b7 Mon Sep 17 00:00:00 2001
From: lowercase-donkey <lowercasedonkey@gmail.com>
Date: Thu, 18 Apr 2019 02:16:44 -0400
Subject: [PATCH] sometimes boss works the desk

---
 src/endWeek/saServeThePublic.js | 2 +-
 src/endWeek/saWhore.js          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/endWeek/saServeThePublic.js b/src/endWeek/saServeThePublic.js
index d7eecc0abba..381e887ac27 100644
--- a/src/endWeek/saServeThePublic.js
+++ b/src/endWeek/saServeThePublic.js
@@ -1192,7 +1192,7 @@ window.saServeThePublic = (function saServeThePublic() {
 	/** @param {App.Entity.SlaveState} slave */
 	function addRep(slave) {
 		if (slave.assignment !== "recruit girls") {
-			if (slave.assignment === "serve in the club") {
+			if (slave.assignment === "serve in the club" || slave.assignment ===  "be the DJ") {
 				repX(Math.trunc((slave.sexAmount * slave.sexQuality) * (1 + (0.003 * slave.skill.entertainment)) * 0.15), "publicServantClub", slave);
 			} else if (slave.assignment === "serve the public") {
 				repX(Math.trunc((slave.sexAmount * slave.sexQuality) * (1 + (0.003 * slave.skill.entertainment)) * 0.15), "publicServant", slave);
diff --git a/src/endWeek/saWhore.js b/src/endWeek/saWhore.js
index 736a49a2b51..adeb229cae6 100644
--- a/src/endWeek/saWhore.js
+++ b/src/endWeek/saWhore.js
@@ -1363,7 +1363,7 @@ window.saWhore = (function saWhore() {
 	function addCash(slave) {
 		cash = Math.trunc((beauty * FuckResult) * (1 + (0.002 * slave.skill.whoring)));
 		T.incomeStats.income += cash;
-		if (slave.assignment === "work in the brothel") {
+		if (slave.assignment === "work in the brothel" || slave.assignment === "be the Madam") {
 			cashX(cash, "whoreBrothel", slave);
 		} else if (slave.assignment === "whore") {
 			cashX(cash, "whore", slave);
-- 
GitLab