From f80bcf969429a263b9a68ac14007c04c2ece87cc Mon Sep 17 00:00:00 2001 From: Kenneth Allen Date: Thu, 21 Oct 2021 00:51:35 +1100 Subject: [PATCH] Fix Brickyard yield --- packages/wonders-common/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/wonders-common/index.ts b/packages/wonders-common/index.ts index ae5b09c..f93f5ca 100644 --- a/packages/wonders-common/index.ts +++ b/packages/wonders-common/index.ts @@ -85,7 +85,7 @@ const structuresAge1: Structure[] = [ { type: 'science', name: 'Workshop', appears: [[3, 7]], cost: new Map([['glass', 1]]), sciences: new Set(['engineering']) }, ] const structuresAge2: Structure[] = [ - { type: 'basic industry', name: 'Brickyard', appears: [, [3, 4]], cost: new Map([['gold', 1]]), resources: new Map([['ore', 2]]) }, + { type: 'basic industry', name: 'Brickyard', appears: [, [3, 4]], cost: new Map([['gold', 1]]), resources: new Map([['brick', 2]]) }, { type: 'basic industry', name: 'Foundry', appears: [, [3, 4]], cost: new Map([['gold', 1]]), resources: new Map([['ore', 2]]) }, { type: 'basic industry', name: 'Sawmill', appears: [, [3, 4]], cost: new Map([['gold', 1]]), resources: new Map([['wood', 2]]) }, { type: 'basic industry', name: 'Quarry', appears: [, [3, 4]], cost: new Map([['gold', 1]]), resources: new Map([['stone', 2]]) },