From ec2e21c712e8fc32fbc42736f751de59da6d0642 Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Sat, 22 Feb 2025 21:11:24 -0800 Subject: [PATCH] check for connectedness in mapgen --- src/mapgen.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/mapgen.ts b/src/mapgen.ts index 2b0d924..bc1d004 100644 --- a/src/mapgen.ts +++ b/src/mapgen.ts @@ -168,7 +168,7 @@ export function generateMap(): LoadedNewMap { if (e instanceof BadMapError) { console.log(`Bad map generated: ${e.message}:`); showDebug(e.badMap); - continue; + // continue; } throw e; } @@ -604,6 +604,11 @@ function connectRegions(knife: Knife) { connectors = connectors2; } knife.showDebug(merged); + + // The map should now be fully connected. + if (!knife.map.isConnected()) { + throw new BadMapError("unconnected", knife.map); + } } function growMaze(knife: Knife, start: Point) {