diff --git a/src/uncategorized/saServeThePublic.tw b/src/uncategorized/saServeThePublic.tw index 67139d52ad74dfac4cb05e838ff3efbad34655c3..bfb2152cc4f6e50743144f3f57517ba76cb27e8a 100644 --- a/src/uncategorized/saServeThePublic.tw +++ b/src/uncategorized/saServeThePublic.tw @@ -1275,7 +1275,7 @@ Her appearance attracted $beauty members of the public (<<print Math.trunc($beau <<elseif ($slaves[$i].drugs == "hyper testicle enhancement")>> <<set $vignettes.push({text: "she bloated a female citizen's belly with her copious ejaculate, leading her to recommend your slaves for girls that want to look pregnant without actually getting pregnant,", type: "rep", effect: 1})>> <</if>> -<<if ($slaves[$i].aphrodisiacs > 1)) || ($slaves[$i].inflationType == "aphrodisiac")>> +<<if ($slaves[$i].aphrodisiacs > 1) || ($slaves[$i].inflationType == "aphrodisiac")>> <<set $vignettes.push({text: "her piteous begging for sex due to her extreme aphrodisiac dosage turned a citizen off,", type: "rep", effect: -1})>> <</if>> <<if ($slaves[$i].inflationType == "aphrodisiac")>> diff --git a/src/utility/raWidgets.tw b/src/utility/raWidgets.tw index 6b79d8768d0ba9b4fe17081c6893efc9ce4d24e1..52edda62f04d4da72a9e55dc8e3247f2212da09d 100644 --- a/src/utility/raWidgets.tw +++ b/src/utility/raWidgets.tw @@ -2969,12 +2969,12 @@ Your brand design is ''$brandDesign.'' Call as <<RARemoveRule>> %/ <<widget "RARemoveRule">> - <<for _s = 0; _s < $activeSlave.currentRules.length; _s++>> - <<if _currentRule.ID == $activeSlave.currentRules[_s]>> - <<set $dump = $activeSlave.currentRules.pluck([_s],[_s])>> + <<for _s = 0; _s < $args[0].currentRules.length; _s++>> + <<if _currentRule.ID == $args[0].currentRules[_s]>> + <<set $dump = $args[0].currentRules.pluck([_s],[_s])>> <</if>> <</for>> - <br>Rule _rule (_currentRule.name) is no longer applying to $activeSlave.slaveName. + <br>Rule _rule (_currentRule.name) is no longer applying to $args[0].slaveName. <<include "Rules Facility Remove">> <</widget>>