From bd567fb4d8cd936d25d41cf8bd4c03b0f8fe9427 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Thu, 7 May 2020 20:16:48 -0700 Subject: [PATCH] Degradation, tattoo choice, and piercing level are applicable to the body mod studio only, don't bother to set them other places. --- src/interaction/prostheticConfig.tw | 2 +- src/interaction/slaveInteract.js | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/src/interaction/prostheticConfig.tw b/src/interaction/prostheticConfig.tw index f3438a02b69..9a070a53933 100644 --- a/src/interaction/prostheticConfig.tw +++ b/src/interaction/prostheticConfig.tw @@ -115,7 +115,7 @@ This room is lined with shelves and cabinets; it could be easily mistaken for a </p> <p class="indent"> - $He has <<print App.Desc.eyesColor(getSlave($AS))>>. To change $his eye color visit the [[auto salon|Salon][$degradation = 0, $primaryHairColor = "", $secondaryHairColor = "", $primaryEarColor = "", $secondaryEarColor = "", $primaryTailColor = "", $secondaryTailColor = "", $artificialEyeColor = "", $artificialEyeShape = "",$artificialEyeFill = "", $tattooChoice = "", $piercingLevel = ""]]. + $He has <<print App.Desc.eyesColor(getSlave($AS))>>. To change $his eye color visit the [[auto salon|Salon][$primaryHairColor = "", $secondaryHairColor = "", $primaryEarColor = "", $secondaryEarColor = "", $primaryTailColor = "", $secondaryTailColor = "", $artificialEyeColor = "", $artificialEyeShape = "",$artificialEyeFill = ""]]. </p> <</if>> diff --git a/src/interaction/slaveInteract.js b/src/interaction/slaveInteract.js index 1ef3320f126..667e46af2a3 100644 --- a/src/interaction/slaveInteract.js +++ b/src/interaction/slaveInteract.js @@ -28,8 +28,6 @@ App.UI.SlaveInteract.placeInLine = function(slave) { App.UI.SlaveInteract.modify = function(slave) { const {he, his} = getPronouns(slave); let el = new DocumentFragment(); - let div; - let note; const isAgent = ["be your agent", "live with your agent"].includes(slave.assignment); @@ -58,7 +56,6 @@ App.UI.SlaveInteract.modify = function(slave) { makeRoomLink(el, "Auto salon", "Salon", ' Modify hair (color, length, style), nails, and even skin color.', () => { V.activeSlave = slave; - V.degradation = 0; V.primaryHairColor = ""; V.secondaryHairColor = ""; V.primaryEarColor = ""; @@ -68,8 +65,6 @@ App.UI.SlaveInteract.modify = function(slave) { V.artificialEyeColor = ""; V.artificialEyeShape = ""; V.artificialEyeFill = ""; - V.tattooChoice = ""; - V.piercingLevel = ""; } ); @@ -84,7 +79,6 @@ App.UI.SlaveInteract.modify = function(slave) { makeRoomLink(el, "Remote surgery", "Remote Surgery", ` Surgically modify your slave with state of the art plastic surgery and more. Alter ${his} senses, skeletal structure, organs, and even more.`, () => { V.activeSlave = slave; - V.degradation = 0; } ); -- GitLab