diff --git a/src/npc/startingGirls/startingGirls.js b/src/npc/startingGirls/startingGirls.js index d9892207f7a09106fa15b875861cada7108dc621..462ed7dcdc89dad4876057982dc2230c61d0662e 100644 --- a/src/npc/startingGirls/startingGirls.js +++ b/src/npc/startingGirls/startingGirls.js @@ -780,7 +780,7 @@ App.StartingGirls.physical = function(slave, cheat = false) { () => { slave[limb][side] = null; }, - passage() + "" ); if (cheat && slave.PLimb) { option.addValueList([ @@ -799,7 +799,7 @@ App.StartingGirls.physical = function(slave, cheat = false) { () => { slave[limb][side] = new App.Entity.LimbState(); }, - passage() + "" ); } } @@ -901,7 +901,7 @@ App.StartingGirls.upper = function(slave, cheat = false) { ]); option.addValue("Cybernetic", 3, () => eyeSurgery(slave, side, "cybernetic")); if (V.seeExtreme === 1) { - option.customButton("Remove eye", () => eyeSurgery(slave, side, "remove"), passage()); + option.customButton("Remove eye", () => eyeSurgery(slave, side, "remove"), ""); } } option = options.addOption(`${capFirstChar(side)} pupil shape`, "pupil", slave.eye[side]) @@ -2000,7 +2000,7 @@ App.StartingGirls.stats = function(slave) { ["PCKnockedUp", "Times knocked up PC"], ["bestiality", "Bestiality"] ]); - options.addOption("Set all counters to 0", "counter", slave).customButton("Reset", () => slave.counter = new App.Entity.SlaveActionsCountersState(), passage()); + options.addOption("Set all counters to 0", "counter", slave).customButton("Reset", () => slave.counter = new App.Entity.SlaveActionsCountersState(), ""); for (const key of counters) { const title = titles.get(key) || capFirstChar(key); options.addOption(title, key, slave.counter)