From 22aa469870a127a5520b72f62e1c28432393ceae Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@gmail.com> Date: Sun, 8 Mar 2020 17:29:55 +0100 Subject: [PATCH] Dairy is not a shop type --- src/js/economyJS.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/economyJS.js b/src/js/economyJS.js index 2a94a5d45c3..6a69131bbdc 100644 --- a/src/js/economyJS.js +++ b/src/js/economyJS.js @@ -2099,7 +2099,7 @@ window.SectorCounts = function() { V.AProsperityCap += 5; } } else if (cell instanceof App.Arcology.Cell.Shop) { - if (cell.type !== "Diary" && cell.type !== "Brothel") { + if (cell.type !== "Club" && cell.type !== "Brothel") { V.AProsperityCap += 10; } } else if (cell instanceof App.Arcology.Cell.Market) { -- GitLab