diff options
| author | historia <[not public]> | 2026-07-06 23:05:04 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-07-06 23:05:04 -0400 |
| commit | 9292634f2f8d71a53879ff07e1330c671b207d51 (patch) | |
| tree | dcffadf7f697e8ad0705d787d8f599bdeeedb812 /internal/validate/checks.go | |
| parent | 911aae15f4e869c93239ef7c630c61e1d9d4ef3f (diff) | |
| download | thehouseoficarus-9292634f2f8d71a53879ff07e1330c671b207d51.tar.gz | |
feat: split the concept of hidden and impassable exits. add player_flag for discovered hidden exits.
Diffstat (limited to 'internal/validate/checks.go')
| -rw-r--r-- | internal/validate/checks.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/validate/checks.go b/internal/validate/checks.go index 41b34e0..360f97c 100644 --- a/internal/validate/checks.go +++ b/internal/validate/checks.go @@ -991,7 +991,7 @@ func validateRoomGrid(s Source) []Issue { continue } - grid := world.BuildGrid(origin, load, include, func(c world.GridConflict) { + grid := world.BuildGrid(origin, load, include, nil, func(c world.GridConflict) { switch c.Kind { case "twist": issues = append(issues, Issue{ @@ -1044,7 +1044,7 @@ func validateRoomGrid(s Source) []Issue { if placed[id] { continue } - grid := world.BuildGrid(id, load, include, onConf(id)) + grid := world.BuildGrid(id, load, include, nil, onConf(id)) for rid := range grid.Coord { placed[rid] = true } |
