diff --git a/src/interaction/prostheticConfig.tw b/src/interaction/prostheticConfig.tw index f3438a02b694e1cac7eede2b57de9094c369b7f8..9a070a53933a6e406785c591216302b9d9ee3be2 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 1ef3320f126b884e1737465e2086ab9b87c35b1c..667e46af2a36fba7b62d73bacb6d89500ccce080 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; } );