From 5cf24103408ba62b495576d2e7aac55eb44612cb Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Wed, 2 Sep 2020 21:05:02 -0400 Subject: [PATCH] revert --- src/markets/marketUI.js | 2 -- src/markets/specificMarkets/householdLiquidator.js | 1 - src/markets/theMarket/buySlaves.js | 1 - 3 files changed, 4 deletions(-) diff --git a/src/markets/marketUI.js b/src/markets/marketUI.js index 84c48fd89d9..008c5f0b3cd 100644 --- a/src/markets/marketUI.js +++ b/src/markets/marketUI.js @@ -107,7 +107,6 @@ App.Markets.purchaseFramework = function(slaveMarket, {numArcology, sTitleSingul student(); cashX(forceNeg(cost), "slaveTransfer", slave); V.newSlaves.push(slave); - V.newSlaveIndex = 0; }, [], "Bulk Slave Intro" @@ -124,7 +123,6 @@ App.Markets.purchaseFramework = function(slaveMarket, {numArcology, sTitleSingul App.UI.DOM.passageLink( title.finish, "Bulk Slave Intro", - () => V.newSlaveIndex = 0, ) ); } diff --git a/src/markets/specificMarkets/householdLiquidator.js b/src/markets/specificMarkets/householdLiquidator.js index 57abad8bf06..83b18263570 100644 --- a/src/markets/specificMarkets/householdLiquidator.js +++ b/src/markets/specificMarkets/householdLiquidator.js @@ -118,7 +118,6 @@ App.Markets["Household Liquidator"] = function() { () => { V.newSlaves = _newSlaves; V.newSlaves.forEach((s) => cashX(forceNeg(_totalCost / V.newSlaves.length), "slaveTransfer", s)); - V.newSlaveIndex = 0; }, [], "Bulk Slave Intro" diff --git a/src/markets/theMarket/buySlaves.js b/src/markets/theMarket/buySlaves.js index dcd140b9d17..da88b1c770d 100644 --- a/src/markets/theMarket/buySlaves.js +++ b/src/markets/theMarket/buySlaves.js @@ -221,7 +221,6 @@ App.UI.buySlaves = function() { V.nextButton = "Continue"; V.nextLink = "Bulk Slave Intro"; V.returnTo = "Main"; - V.newSlaveIndex = 0; } } }; -- GitLab