diff --git a/src/markets/marketUI.js b/src/markets/marketUI.js
index 84c48fd89d99d021e24f8202e5dbdcfdd97cf027..008c5f0b3cd4bf8d7f7ca42d23e2b3f3c8629262 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 57abad8bf0665a4c370e00677be59e2f7d1f646e..83b182635701e6f650e1b9e56191cd45f9399809 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 dcd140b9d17c994d5cd960ea97e32510555b250b..da88b1c770d69153727d4104f69836a109daca75 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;
 		}
 	}
 };