summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dat/clua/sanity.lua
blob: aea29a5b96fe733333d913924e7f6ee41ab35bc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- Sanity checks that should be run just before the game starts.

local function assert_place_has_map(place)
  assert(dgn.map_by_place(place), "No map found for " .. place)
end

local function sanity_checks()
  local places = {
    "Zot:$", "Snake:$", "Swamp:$", "Slime:$", "Vault:$",
    "Tomb:$", "Coc:$", "Tar:$", "Dis:$", "Geh:$"
  }
  for _, place in ipairs(places) do
    assert_place_has_map(place)
  end
end

sanity_checks()