summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/maps.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-23 20:17:08 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-23 20:17:08 +0000
commit9007dee72716b25f791d49beabe2d5b662086f7b (patch)
tree12afc734a1f8b4903c1ce42c70079387c95ac86e /crawl-ref/source/maps.h
parent6866898a809acc4a7d89f2a82bebf2357423142e (diff)
downloadcrawl-ref-9007dee72716b25f791d49beabe2d5b662086f7b.tar.gz
crawl-ref-9007dee72716b25f791d49beabe2d5b662086f7b.zip
Clean up legacy cruft involved in placing vaults.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7557 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/maps.h')
-rw-r--r--crawl-ref/source/maps.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/crawl-ref/source/maps.h b/crawl-ref/source/maps.h
index 20dc1709c1..677956a25e 100644
--- a/crawl-ref/source/maps.h
+++ b/crawl-ref/source/maps.h
@@ -26,9 +26,15 @@ struct vault_placement
map_def map;
std::vector<coord_def> exits;
+ int level_number, altar_count, num_runes;
+
+ // If we're not placing runes, this is the substitute feature.
+ int rune_subst;
+
vault_placement()
: pos(-1, -1), size(0, 0), orient(0), map(),
- exits()
+ exits(), level_number(0), altar_count(0), num_runes(0),
+ rune_subst(-1)
{
}
};