From 6eb2eb00be62244e955e91e3f06b115f1ddf2dfd Mon Sep 17 00:00:00 2001 From: lowercase-donkey <lowercasedonkey@gmail.com> Date: Mon, 6 May 2019 19:04:13 -0400 Subject: [PATCH] Reintroduce madams buff at whoring --- src/endWeek/saWhore.js | 4 +++- src/uncategorized/clubReport.tw | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/endWeek/saWhore.js b/src/endWeek/saWhore.js index f441a94515f..12ce38960d7 100644 --- a/src/endWeek/saWhore.js +++ b/src/endWeek/saWhore.js @@ -1388,8 +1388,10 @@ 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" || slave.assignment === "be the Madam") { + if (slave.assignment === "work in the brothel") { cashX(cash, "whoreBrothel", slave); + } else if (slave.assignment === "be the Madam") { + cashX((cash*1.5), "whoreBrothel", slave); /* Madam is a popular lady if you can get her */ } else if (slave.assignment === "whore") { cashX(cash, "whore", slave); } else { diff --git a/src/uncategorized/clubReport.tw b/src/uncategorized/clubReport.tw index 5a6a7a30b7c..4d73ef0cc57 100644 --- a/src/uncategorized/clubReport.tw +++ b/src/uncategorized/clubReport.tw @@ -103,9 +103,9 @@ <<run saServeThePublic($slaves[$i])>> <</if>> /* The "extra" that she makes. Move into saServeThePublic to match saWhore, someday. */ - <<run repX(Math.trunc(($beauty*$FResult)*(1+(0.003*$slaves[_FLs].skill.entertainment))*0.1*0.5), "club", $slaves[_FLs])>> + <<run repX(Math.trunc(($beauty*$FResult)*(1+(0.003*$slaves[_FLs].skill.entertainment))*0.1*0.5), "publicServantClub", $slaves[_FLs])>> <</if>> - <<run repX(Math.trunc(($slaves[_FLs].sexAmount*$slaves[_FLs].sexQuality)*(1+(0.003*$slaves[_FLs].skill.entertainment))*0.1*0.5), "club", $slaves[_FLs])>> + <<run repX(Math.trunc(($slaves[_FLs].sexAmount*$slaves[_FLs].sexQuality)*(1+(0.003*$slaves[_FLs].skill.entertainment))*0.1*0.5), "publicServantClub", $slaves[_FLs])>> <</if>> <<if (_DL > 0)>><br><br><</if>> <</if>> -- GitLab