From 26942e9deea7848f61112c44d807aef35690ab9a Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Wed, 29 Apr 2020 15:57:13 -0400
Subject: [PATCH] reenable blackmarket ovaries

---
 js/003-data/gameVariableData.js |  2 +-
 src/pregmod/theBlackMarket.tw   | 12 +++++-------
 2 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/js/003-data/gameVariableData.js b/js/003-data/gameVariableData.js
index 506c35d4209..d63b878d924 100644
--- a/js/003-data/gameVariableData.js
+++ b/js/003-data/gameVariableData.js
@@ -237,7 +237,7 @@ App.Data.FSWares = [
 ];
 
 App.Data.illegalWares = [
-	// "AnimalOrgans" for future use
+	"AnimalOrgans",
 	"asexualReproduction",
 	"BlackmarketPregAdaptation",
 	"childhoodFertilityInducedNCS",
diff --git a/src/pregmod/theBlackMarket.tw b/src/pregmod/theBlackMarket.tw
index 71fb7396a56..897b3d243f1 100644
--- a/src/pregmod/theBlackMarket.tw
+++ b/src/pregmod/theBlackMarket.tw
@@ -368,14 +368,13 @@ He gestures to a door in the back of the stall. "The good shit's back there<<if
 						<<run $merchantIllegalWares.delete("asexualReproduction")>>
 					<</if>>
 
-				/* Stop fucking enabling this, it breaks everything.
 				<<case "AnimalOrgans">>
 					<<if $experimental.food && $experimental.animalOvaries && $farmyard>>
 						<<if $animalOvaries == 0 || $animalTesticles == 0 || $animalMpreg == 0>>
 							<<if $organFarmUpgrade > 0>>
 								<<if $cash >= 25000>>
 									<<if $animalOvaries == 0>>
-										[[Purchase schematics for animal ovaries|FarmyardLab][cashX(-25000, "capEx"), $animalOvaries = 1]]
+										[[Purchase schematics for animal ovaries|The Black Market][cashX(-25000, "capEx"), $animalOvaries = 1]]
 										<br>//Costs <<print cashFormat(25000)>> and allows you to implant animal ovaries into slaves.//
 										<br>
 									<<else>>
@@ -387,7 +386,7 @@ He gestures to a door in the back of the stall. "The good shit's back there<<if
 								<</if>>
 								<<if $cash >= 25000>>
 									<<if $animalTesticles == 0>>
-										[[Purchase schematics for animal testicles|FarmyardLab][cashX(-25000, "capEx"), $animalTesticles = 1]]
+										[[Purchase schematics for animal testicles|The Black Market][cashX(-25000, "capEx"), $animalTesticles = 1]]
 										<br>//Costs <<print cashFormat(25000)>> and allows you to implant animal testicles into slaves.//
 										<br>
 									<<else>>
@@ -399,7 +398,7 @@ He gestures to a door in the back of the stall. "The good shit's back there<<if
 								<</if>>
 								<<if $cash >= 25000>>
 									<<if $animalMpreg == 0>>
-										[[Purchase schematics for animal anal wombs and ovaries|FarmyardLab][cashX(-25000, "capEx"), $animalMpreg = 1]]
+										[[Purchase schematics for animal anal wombs and ovaries|The Black Market][cashX(-25000, "capEx"), $animalMpreg = 1]]
 										<br>//Costs <<print cashFormat(25000)>> and allows you to implant animal anal wombs and ovaries into slaves.//
 										<br>
 									<<else>>
@@ -409,17 +408,16 @@ He gestures to a door in the back of the stall. "The good shit's back there<<if
 								<<else>>
 									You cannot afford the asking price of @@.red;<<print cashFormat(25000)>>@@ for animal anal wombs and ovaries.
 								<</if>>
-								/ TODO: flesh this out some more /
+								/* TODO: flesh this out some more */
 								<br>"Got something real special this week. These are schematics for implanting non-human organs into humans. My supplier told me they came from some military experiments or something — maybe they were trying to make some kind of super soldier. Not my business, though."
 							<<else>>
 								You lack the facilities required to grow organs.
 							<</if>>
-						<<else>>	/ if all schematics have already been purchased /
+						<<else>>	/* if all schematics have already been purchased */
 							You already possess all of the schematics for implanting animal organs.
 							<<run $merchantIllegalWares.delete("AnimalOrgans")>>
 						<</if>>
 					<</if>>
-				*/
 			<</switch>>
 		</div>
 	<</for>>
-- 
GitLab