From 2755e82d27bd7118a0e64c84c60fb6f76f1a1cd6 Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@gmail.com> Date: Thu, 12 Mar 2020 21:33:06 +0100 Subject: [PATCH] move dick layout ground up one --- src/arcologyBuilding/presets.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arcologyBuilding/presets.js b/src/arcologyBuilding/presets.js index b29ec5306c4..8fc501bc46e 100644 --- a/src/arcologyBuilding/presets.js +++ b/src/arcologyBuilding/presets.js @@ -206,9 +206,9 @@ App.Arcology.presets = (function() { sections.push(new App.Arcology.Section("apartments", rows)); rows = []; rows.push([new App.Arcology.Cell.Market(1), new App.Arcology.Cell.Market(1), new App.Arcology.Cell.Shop(1), new App.Arcology.Cell.Shop(1), new App.Arcology.Cell.Market(1), new App.Arcology.Cell.Market(1)]); - rows.push([new App.Arcology.Cell.Market(1), new App.Arcology.Cell.Manufacturing(1), new App.Arcology.Cell.Filler(0.25), new App.Arcology.Cell.Manufacturing(1), new App.Arcology.Cell.Filler(0.25), new App.Arcology.Cell.Manufacturing(1), new App.Arcology.Cell.Market(1)]); sections.push(new App.Arcology.Section("markets", rows, true)); rows = []; + rows.push([new App.Arcology.Cell.Market(1), new App.Arcology.Cell.Manufacturing(1), new App.Arcology.Cell.Filler(0.25), new App.Arcology.Cell.Manufacturing(1), new App.Arcology.Cell.Filler(0.25), new App.Arcology.Cell.Manufacturing(1), new App.Arcology.Cell.Market(1)]); rows.push([new App.Arcology.Cell.Manufacturing(1), new App.Arcology.Cell.Filler(0.75), new App.Arcology.Cell.Manufacturing(1), new App.Arcology.Cell.Filler(0.75), new App.Arcology.Cell.Manufacturing(1)]); sections.push(new App.Arcology.Section("manufacturing", rows)); return new App.Arcology.Building(sections); -- GitLab