summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/arena.cc
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@wybt.net>2012-05-21 15:26:23 +0400
committerVsevolod Kozlov <zaba@wybt.net>2012-05-24 17:19:57 +0400
commit2e49416ddee1676eab576f5ad6a81ab472caa555 (patch)
tree8c107bbdb012600c6e45f0dde5ca6d6b85d11072 /crawl-ref/source/arena.cc
parentdefa8e540b49dc39fc671340e8e478c132188bb1 (diff)
downloadcrawl-ref-2e49416ddee1676eab576f5ad6a81ab472caa555.tar.gz
crawl-ref-2e49416ddee1676eab576f5ad6a81ab472caa555.zip
Change 'clobber' to 'check_collision' in _build_secondary_vault and things that call it.
To make it consistent with the functions called by it.
Diffstat (limited to 'crawl-ref/source/arena.cc')
-rw-r--r--crawl-ref/source/arena.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/arena.cc b/crawl-ref/source/arena.cc
index a453b03c4d..9849e188f3 100644
--- a/crawl-ref/source/arena.cc
+++ b/crawl-ref/source/arena.cc
@@ -263,7 +263,7 @@ namespace arena
#endif
ASSERT(map);
- bool success = dgn_place_map(map, true, true);
+ bool success = dgn_place_map(map, false, true);
if (!success)
throw make_stringf("Failed to create arena named \"%s\"",
arena_type.c_str());