From 563e203883f3db0cb32cd7e03c80bd1d3dabd381 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Thu, 23 Jul 2020 18:44:33 -0400 Subject: [PATCH] fixes --- src/interaction/slaveInteract.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/interaction/slaveInteract.js b/src/interaction/slaveInteract.js index f1e9a9faf27..8f0eff74e46 100644 --- a/src/interaction/slaveInteract.js +++ b/src/interaction/slaveInteract.js @@ -2153,7 +2153,6 @@ App.UI.SlaveInteract.rules = function(slave) { App.UI.DOM.appendNewElement("h2", p, `Other Rules`); // Living - if (slave.fuckdoll > 0) { // Rules have little meaning for living sex toys// } else { @@ -2171,9 +2170,6 @@ App.UI.SlaveInteract.rules = function(slave) { choices = [ {value: "spare"}, {value: "normal"}, - {value: "restrictive"}, - {value: "permissive"}, - {value: "mandatory"}, ]; if (V.roomsPopulation <= V.rooms - 0.5) { choices.push({value: "luxurious"}); @@ -2181,7 +2177,7 @@ App.UI.SlaveInteract.rules = function(slave) { choices.push(App.UI.DOM.disabledLink(`Luxurious`, "No luxurious rooms available")); } - p.append(listChoices(choices, "rest")); + p.append(listChoices(choices, "living")); } // Rest -- GitLab