diff --git a/src/data/backwardsCompatibility/datatypeCleanup.js b/src/data/backwardsCompatibility/datatypeCleanup.js
index ab48fbab60750131cdb5b92dbee11ebce433da57..6408d96f4d4140f167b0ce940a8ec83e69b9a6d9 100644
--- a/src/data/backwardsCompatibility/datatypeCleanup.js
+++ b/src/data/backwardsCompatibility/datatypeCleanup.js
@@ -752,7 +752,7 @@ globalThis.SlaveDatatypeCleanup = (function SlaveDatatypeCleanup() {
 		slave.boobsImplant = Math.max(+slave.boobsImplant, 0) || 0;
 		if (slave.boobsImplant === 0) {
 			slave.boobsImplantType = "none";
-		} else if (slave.boobsImplant > 0 && boobsImplantType === "none") {
+		} else if (slave.boobsImplant > 0 && slave.boobsImplantType === "none") {
 			if (slave.boobsImplant > 10000) {
 				slave.boobsImplantType = "hyper fillable";
 			} else if (slave.boobsImplant > 2200) {
diff --git a/src/facilities/penthouse/penthousePassage.js b/src/facilities/penthouse/penthousePassage.js
index ca5a5666e87c9c11d1c7d0225b3f0416a88bb870..7095e9bf390d60c9843df14077abf5bfa58f929e 100644
--- a/src/facilities/penthouse/penthousePassage.js
+++ b/src/facilities/penthouse/penthousePassage.js
@@ -320,7 +320,7 @@ App.UI.managePenthouse = function() {
 		if (V.seePreg === 1) {
 			if (V.pregnancyMonitoringUpgrade === 0) {
 				if (V.rep > 10000) {
-					r.push(makeLink("Upgrade the pregnancy monitoring systems", () => { V.pregnancyMonitoringUpgrade = 3; }, 30000));
+					r.push(makeLink("Upgrade the pregnancy monitoring systems", () => { V.pregnancyMonitoringUpgrade = 1; }, 30000));
 				} else {
 					r.push(App.UI.DOM.makeElement("span", "You lack the reputation to purchase improved pregnancy monitoring systems.", "note"));
 				}