diff --git a/js/003-data/gameVariableData.js b/js/003-data/gameVariableData.js index 1874d1b207d26bf6737679f236fcfa76d1f50197..a2f47bec7530a3a8189af8e9a672e2548c5c45a9 100644 --- a/js/003-data/gameVariableData.js +++ b/js/003-data/gameVariableData.js @@ -103,7 +103,6 @@ App.Data.defaultGameStateVariables = { imageChoice: 1, inbreeding: 1, lastBDayEvent: -1, - lineSeparations: 1, endweekSaveWarning: 1, /** @type {'link'|'button'} */ purchaseStyle: 'link', diff --git a/js/medicine/surgery/teeth/braces.js b/js/medicine/surgery/teeth/braces.js index f8c3dfc57aec21f5077ab38dd7a5f3495935a585..58759f589841befe2ca9328148552b213b0f15dc 100644 --- a/js/medicine/surgery/teeth/braces.js +++ b/js/medicine/surgery/teeth/braces.js @@ -201,7 +201,7 @@ App.Medicine.Surgery.Procedures.AddCosmeticBraces = class extends App.Medicine.S apply(cheat) { this._slave.teeth = "cosmetic braces"; - return this._assemble(new App.Medicine.Surgery.Reactions.RemoveCosmeticBraces()); + return this._assemble(new App.Medicine.Surgery.Reactions.Braces()); } }; diff --git a/src/events/RESS/devotedFearfulSlave.js b/src/events/RESS/devotedFearfulSlave.js index 93fe34c47ac5f02ffa07ff95d5b57a3b9974fe14..a50097a9624b3e617cbed4bb3d0a4b26a6b78089 100644 --- a/src/events/RESS/devotedFearfulSlave.js +++ b/src/events/RESS/devotedFearfulSlave.js @@ -55,7 +55,7 @@ App.Events.RESSDevotedFearfulSlave = class RESSDevotedFearfulSlave extends App.E function comfort() { t = []; - t.push(`You set the ${V.PC.refreshment} aside on your desk for now, and take ${him} gently by the hand. You lead ${him} out onto the balcony of the Penthouse over to the railing. ${He} obediently assumes a position for you, bracing ${his} arm${hasBothArms(eventSlave) ? 's' : ''} on the railing, arching ${his} back and sticking ${his} bottom out to present ${himself} for use. Much to ${his} surprise, your hand guides ${him} back into a comfortable position, and simply pulls ${him} close into you. You explain to ${him} that ${he} is a good ${girl} who tries ${his} best, and that you don't want ${him} to fear you. After a little coddling, you fall silent, and simply hold ${him} tight, watching the street lights of ${V.arcologies[0].name} blink to life one after the other, slowly transforming the arcology into a vibrant, elegant light show. ${eventSlave.slaveName} can hardly believe what's happening, but eventually is able to relax fully, melting into your arms like butter into a hot pan. ${He} rests ${his} head lovingly against your chest and silently appreciates the view with you. When ${he} eventually departs, ${he} does so with <span class="devotion inc">tears of joy,</span> <span class="trust inc">rather than fear,</span> welling behind ${his} eyes.`); + t.push(`You set the ${V.PC.refreshment} aside on your desk for now, and take ${him} gently by the hand. You lead ${him} out onto the balcony of the penthouse over to the railing. ${He} obediently assumes a position for you, bracing ${his} arm${hasBothArms(eventSlave) ? 's' : ''} on the railing, arching ${his} back and sticking ${his} bottom out to present ${himself} for use. Much to ${his} surprise, your hand guides ${him} back into a comfortable position, and simply pulls ${him} close into you. You explain to ${him} that ${he} is a good ${girl} who tries ${his} best, and that you don't want ${him} to fear you. After a little coddling, you fall silent, and simply hold ${him} tight, watching the street lights of ${V.arcologies[0].name} blink to life one after the other, slowly transforming the arcology into a vibrant, elegant light show. ${eventSlave.slaveName} can hardly believe what's happening, but eventually is able to relax fully, melting into your arms like butter into a hot pan. ${He} rests ${his} head lovingly against your chest and silently appreciates the view with you. When ${he} eventually departs, ${he} does so with <span class="devotion inc">tears of joy,</span> <span class="trust inc">rather than fear,</span> welling behind ${his} eyes.`); eventSlave.devotion += 15; eventSlave.trust += 15; diff --git a/src/gui/options/options.js b/src/gui/options/options.js index 19b5ca8aee23b2ef4460fd1ff68d77c691c86c5a..076cc4561c20ea618c73428dac07acaced4fef2f 100644 --- a/src/gui/options/options.js +++ b/src/gui/options/options.js @@ -873,9 +873,6 @@ App.Intro.display = function(isIntro) { options.addOption("Hide tabs in Slave Interact", "slaveInteractLongForm") .addValue("Enabled", true).on().addValue("Disabled", false).off(); - options.addOption("Line separations are", "lineSeparations") - .addValue("Shown", 1).on().addValue("Hidden", 0).off(); - options.addOption("Warning on end week saving", "endweekSaveWarning") .addValue("Shown", 1).on().addValue("Hidden", 0).off();