diff --git a/src/endWeek/saSharedVariables.js b/src/endWeek/saSharedVariables.js
index 0de2eda0d87e6c8801a9bf69fb424ec29635f7c9..3c21f843b6d7085013e90076d838c600a2d5a66f 100644
--- a/src/endWeek/saSharedVariables.js
+++ b/src/endWeek/saSharedVariables.js
@@ -37,7 +37,7 @@ App.EndWeek.SASharedVariables = class {
 	 * @todo call this from all the facility reports (the slave loops are broken up by facility)
 	 */
 	nextSlave() {
-		/** Is this slave's paraphilia satisfied? (1: satisfied, 0: no paraphilia; -1: unsatisified) */
+		/** Is this slave's paraphilia satisfied? (1: satisfied, 0: no paraphilia; -1: unsatisfied) */
 		this.paraphiliaSatisfied = 0;
 		/** A slave with a lot of porn viewers will have a stronger effect on societal norms. This is her multiplier for those effects. */
 		this.pornFameBonus = 1;
diff --git a/src/endWeek/saSocialEffects.js b/src/endWeek/saSocialEffects.js
index b8e3a4b5c17a838fd0fccfa4d3fb4bab479fb83b..be6fe7157b72bb5776207dc3890b312dadbcc780 100644
--- a/src/endWeek/saSocialEffects.js
+++ b/src/endWeek/saSocialEffects.js
@@ -324,7 +324,7 @@ App.SlaveAssignment.saSocialEffects = function(slave) {
 						`Society is <span class="green">pleased</span> that ${slave.slaveName} is unable to become pregnant.`));
 				}
 				if (slave.abortionTat > 0) {
-					t.push(new SocialEffect("Eugenics", 1, "Abortion tatoos",
+					t.push(new SocialEffect("Eugenics", 1, "Abortion tattoos",
 						`The tally of aborted pregnancies adorning ${his} middle shows <span class="green">just how responsible</span> of an owner ${he} has.`));
 				}
 				if (slave.pregKnown === 1 && V.eugenicsFullControl !== 1) {
diff --git a/src/facilities/penthouse/penthouseFramework.js b/src/facilities/penthouse/penthouseFramework.js
index 8ba020d952446d9220d53588c6eee17972feaa46..a57171cb1ccb804f5603fe4825912ec52f56a0a9 100644
--- a/src/facilities/penthouse/penthouseFramework.js
+++ b/src/facilities/penthouse/penthouseFramework.js
@@ -141,7 +141,7 @@ App.Entity.Facilities.PenthouseJobs = {
 					if (callback) {
 						callback(slave, assignment);
 					}
-					V.activeSlave = slave;
+					V.AS = ID;
 					V.returnTo = passage;
 				}, linkText);
 		}
diff --git a/src/markets/specificMarkets/customSlaveMarket.js b/src/markets/specificMarkets/customSlaveMarket.js
index a3d8539bce51da6a5077f84e6577efab39277d82..d90915fd8222617b77dfc4496be571afb49035ab 100644
--- a/src/markets/specificMarkets/customSlaveMarket.js
+++ b/src/markets/specificMarkets/customSlaveMarket.js
@@ -205,10 +205,9 @@ App.Markets["Custom Slave"] = function() {
 					} else {
 						return `${text} voice. `;
 					}
-				} else {
-					return `Voice is unimportant. `;
 				}
 			}
+			return `Voice is unimportant. `;
 		}
 
 		return el;
@@ -860,10 +859,9 @@ App.Markets["Custom Slave"] = function() {
 			for (const [value, text] of choices) {
 				if (slave.smells === Number(value)) {
 					return `${text}.`;
-				} else {
-					return `Normal Sense of smell. `;
 				}
 			}
+			return `Normal Sense of smell. `;
 		}
 
 		return el;
@@ -884,10 +882,9 @@ App.Markets["Custom Slave"] = function() {
 			for (const [value, text] of choices) {
 				if (slave.tastes === Number(value)) {
 					return `${text}.`;
-				} else {
-					return `Normal Sense of taste. `;
 				}
 			}
+			return `Normal Sense of taste. `;
 		}
 
 		return el;
diff --git a/src/markets/specificMarkets/eliteSlave.js b/src/markets/specificMarkets/eliteSlave.js
index abd9e8549b6400e5efc8c7947e4145c732bd4740..b8d98aacd8cfe3021821c39303b87c0a991e66d9 100644
--- a/src/markets/specificMarkets/eliteSlave.js
+++ b/src/markets/specificMarkets/eliteSlave.js
@@ -1,11 +1,10 @@
 App.Markets["Elite Slave"] = function() {
 	const el = new DocumentFragment();
-	let r = [];
 	V.encyclopedia = "Slave Schools";
 
-	r.push(`You check to see if any potential breeding slaves are on auction.`);
+	el.append(`You check to see if any potential breeding slaves are on auction. `);
 	if (V.eliteAuctioned === 1) {
-		r.push(`There are none available right now, but there probably will be next week.`);
+		el.append(`There are none available right now, but there probably will be next week. `);
 	} else {
 		V.eliteAuctioned = 1;
 
diff --git a/src/markets/specificMarkets/prestigiousSlave.js b/src/markets/specificMarkets/prestigiousSlave.js
index 61626be83d8a8be89c907c9d90131c627e839c95..a3d787f709e58dcfa83d46054e821368c71a41e8 100644
--- a/src/markets/specificMarkets/prestigiousSlave.js
+++ b/src/markets/specificMarkets/prestigiousSlave.js
@@ -636,8 +636,8 @@ App.Markets["Prestigious Slave"] = function() {
 				slave.skill.entertainment = 35;
 				slave.pubicHStyle = "waxed";
 				slave.underArmHStyle = "waxed";
-				slave.sexualFlaw = either("hates women");
-				slave.behavioralFlaw = either("anorexic", "arrogant");
+				slave.sexualFlaw = either("judgemental");
+				slave.behavioralFlaw = either("anorexic", "arrogant", "hates women");
 				slave.custom.desc = "$He moves with the practiced grace of someone who unconsciously still pictures $himself on the runway.";
 				break;
 			case "d albino":
@@ -888,7 +888,6 @@ App.Markets["Prestigious Slave"] = function() {
 		App.UI.DOM.appendNewElement("p", el, `It will take ${cashFormat(cost)} to win the auction.`);
 
 
-
 		if (V.cash >= cost) {
 			App.UI.DOM.appendNewElement(
 				"p",
diff --git a/src/markets/specificMarkets/schools.js b/src/markets/specificMarkets/schools.js
index 4d756131e97982c2b2e7d132c5df0b9fd8d9b294..ea21559657c975c65a93611fb159e8c8ce6f288d 100644
--- a/src/markets/specificMarkets/schools.js
+++ b/src/markets/specificMarkets/schools.js
@@ -42,7 +42,7 @@ App.Markets.LDE = function() {
 		} else {
 			r.push(`research into narrowly targeted hormonal treatments, its graduates are now available with generous members despite their femininity.`);
 		}
-		r.push(`As a major ${(V.PC.title === 0)? `benefactrix`:`benefactor`} of the institution, you also receive a discount on them.`);
+		r.push(`As a major ${(V.PC.title === 0) ? `benefactrix` : `benefactor`} of the institution, you also receive a discount on them.`);
 	}
 
 	App.UI.DOM.appendNewElement("p", el, r.join(" "), "scene-intro");
@@ -140,7 +140,7 @@ App.Markets.TCR = function() {
 		} else {
 			r.push(`a healthy sum of credits to encourage the sale of heifers.`);
 		}
-		r.push(`As a major ${(V.PC.title === 0)? `benefactrix`:`benefactor`} of the ranch, you also receive a discount on them.`);
+		r.push(`As a major ${(V.PC.title === 0) ? `benefactrix` : `benefactor`} of the ranch, you also receive a discount on them.`);
 	}
 	App.UI.DOM.appendNewElement("p", el, r.join(" "), "scene-intro");
 
diff --git a/src/uncategorized/reShelterInspection.tw b/src/uncategorized/reShelterInspection.tw
index 570ef646b7dd534620e47dd134b8bbcd3d6c75fc..5004597528bfe36832d8fad740e734a0e82ad09e 100644
--- a/src/uncategorized/reShelterInspection.tw
+++ b/src/uncategorized/reShelterInspection.tw
@@ -36,6 +36,7 @@
 <<set $activeSlave.behavioralQuirk = either("gluttonous", "hates men", "hates women", "liberated")>>
 <<set $activeSlave.sexualQuirk = either("apathetic", "idealistic")>>
 <<set $activeSlave.clothes = either("conservative clothing", "nice business attire")>>
+<<set $activeSlave.shoes = either("flats", "heels")>>
 
 <<set _Inspectee = getSlave($shelterGirlID)>>
 <<set _originSlave = $genePool.find(function(s) { return s.ID == $shelterGirlID; })>>