From 6c18870b6b9c21692d658b030d4359267865a616 Mon Sep 17 00:00:00 2001 From: Adrian Gaudebert Date: Mon, 4 Nov 2024 17:56:56 +0100 Subject: [PATCH] Rename the game to Bourgade. --- index.html | 2 +- src/village.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 769c217..0a0c89d 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - Incremental City Builder + Bourgade
diff --git a/src/village.ts b/src/village.ts index 95b7c63..6cdb983 100644 --- a/src/village.ts +++ b/src/village.ts @@ -115,7 +115,7 @@ function getInitialState() { } const newBuilding = createBuilding(type); newBuilding.tile = new Hex(x, y); - newBuilding.level = 10; + newBuilding.level = 10; // DEBUG state.outsideTiles[y][x] = newBuilding.id; state.buildings.push(newBuilding); });