diff --git a/src/endWeek/economics/arcmgmt.js b/src/endWeek/economics/arcmgmt.js
index 9a406bbaf46b13c11ae68964007e38dc92c2838d..c1f22d0c1d86a9ac8e1017e05ec3449055a986ce 100644
--- a/src/endWeek/economics/arcmgmt.js
+++ b/src/endWeek/economics/arcmgmt.js
@@ -80,7 +80,7 @@ globalThis.arcmgmt = function() {
 
 	expiration();
 
-	denseapartments();
+	denseApartments();
 
 	citizenToSlave();
 
@@ -1861,13 +1861,13 @@ globalThis.arcmgmt = function() {
 		App.Events.addParagraph(el, r);
 	}
 
-	function denseapartments() {
+	function denseApartments() {
 		/* increases lowerclass attraction based on number of dense apartments */
 	V.building.findCells(cell => !(cell instanceof App.Arcology.Cell.Penthouse))
 		.forEach(cell => {
 			if (cell instanceof App.Arcology.Cell.Apartment) {
 					 if (cell.type === 3) {
-					_lowerClass += 200
+					_lowerClass += 40
 				}
 			}
 		});