From cc08a517f0b7d53766ab4b20147cf3cd21dc9619 Mon Sep 17 00:00:00 2001 From: DCoded <dicoded@email.com> Date: Mon, 31 Oct 2022 22:28:58 -0400 Subject: [PATCH] Removed lipofilling for now --- js/medicine/surgery/liposuction/waist.js | 15 --------------- src/facilities/surgery/surgeryPassageUpper.js | 11 +++-------- 2 files changed, 3 insertions(+), 23 deletions(-) diff --git a/js/medicine/surgery/liposuction/waist.js b/js/medicine/surgery/liposuction/waist.js index a1ee863c0f0..84c4202e6c7 100644 --- a/js/medicine/surgery/liposuction/waist.js +++ b/js/medicine/surgery/liposuction/waist.js @@ -61,18 +61,3 @@ App.Medicine.Surgery.Procedures.WaistReduction = class extends App.Medicine.Surg return this._assemble(new App.Medicine.Surgery.Reactions.Waist()); } }; - -App.Medicine.Surgery.Procedures.WaistExpansion = class extends App.Medicine.Surgery.Procedure { - get name() { - return "Lipofilling"; - } - - get healthCost() { - return 10; - } - - apply(cheat) { - this._slave.waist += 20; - return this._assemble(new App.Medicine.Surgery.Reactions.Waist()); - } -}; diff --git a/src/facilities/surgery/surgeryPassageUpper.js b/src/facilities/surgery/surgeryPassageUpper.js index 0ca63ab02a0..7edd8e9fcac 100644 --- a/src/facilities/surgery/surgeryPassageUpper.js +++ b/src/facilities/surgery/surgeryPassageUpper.js @@ -378,14 +378,9 @@ App.UI.surgeryPassageUpper = function(slave, refresh, cheat = false) { App.Events.addNode(el, r, "div"); if (slave.waist >= -75) { if (slave.indentureRestrictions < 2) { - linkArray.push( - App.Medicine.Surgery.makeLink( - new App.Medicine.Surgery.Procedures.WaistReduction(slave), - refresh, cheat), - // App.Medicine.Surgery.makeLink( - // new App.Medicine.Surgery.Procedures.WaistExpansion(slave), - // refresh, cheat), - ); + linkArray.push(App.Medicine.Surgery.makeLink( + new App.Medicine.Surgery.Procedures.WaistReduction(slave), + refresh, cheat)); } } if (slave.waist >= -95 && slave.waist < -75 && V.seeExtreme === 1) { -- GitLab