diff --git a/src/endWeek/saServeThePublic.js b/src/endWeek/saServeThePublic.js index d7eecc0abba9579ff50db5ce827f7649768eaf13..381e887ac272eae8141bddcd1203d891962b86ba 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 736a49a2b51c66775e44860358c83f2d39e73033..adeb229cae6ff32ed5c86b8fa90d6d449a88feaa 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);