diff --git a/src/js/economyJS.js b/src/js/economyJS.js
index 2feac509d9dbdece4209aeec30c33b1feaf84df9..ac4f31c0c7935d367602be016da6132068116141 100644
--- a/src/js/economyJS.js
+++ b/src/js/economyJS.js
@@ -2094,9 +2094,9 @@ window.SectorCounts = function() {
 
 	const apartments = V.building.findCells(cell => cell instanceof App.Arcology.Cell.Apartment);
 	apartments.forEach(a => {
-		if (a.type === "Apartments") {
+		if (a.type === 2) {
 			V.AProsperityCap += 10;
-		} else if (a.type === "Luxury Apartments") {
+		} else if (a.type === 1) {
 			V.AProsperityCap += 15;
 		}
 	});