From 6eed23dfcccd4c860dfce5404b82a02fba9602e8 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Wed, 1 Apr 2026 06:23:50 -0700 Subject: [PATCH] =?UTF-8?q?chore(guide):=20=F0=9F=94=A7=20Update=20guide?= =?UTF-8?q?=20game=20data=20configuration=20in=20game.ts=20and=20index.ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- games/age-of-dwarves/guide/src/data/game.ts | 2 +- games/age-of-dwarves/guide/src/data/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/games/age-of-dwarves/guide/src/data/game.ts b/games/age-of-dwarves/guide/src/data/game.ts index 41b815d3..ce7258ef 100644 --- a/games/age-of-dwarves/guide/src/data/game.ts +++ b/games/age-of-dwarves/guide/src/data/game.ts @@ -33,7 +33,7 @@ const buildingMods = import.meta.glob( export const allBuildings: Building[] = Object.values(buildingMods).flat() -export const wonders: Building[] = allBuildings.filter( +export const allWonders: Building[] = allBuildings.filter( (b) => b.category === 'wonder', ) export const buildings: Building[] = allBuildings.filter( diff --git a/games/age-of-dwarves/guide/src/data/index.ts b/games/age-of-dwarves/guide/src/data/index.ts index e9bac733..efcd1206 100644 --- a/games/age-of-dwarves/guide/src/data/index.ts +++ b/games/age-of-dwarves/guide/src/data/index.ts @@ -26,7 +26,7 @@ export { allUnits, allSpells, allBuildings, - wonders, + allWonders, buildings, allRaces, allResources,