summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/maps.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/maps.cc')
-rw-r--r--crawl-ref/source/maps.cc15
1 files changed, 0 insertions, 15 deletions
diff --git a/crawl-ref/source/maps.cc b/crawl-ref/source/maps.cc
index d76b8c4268..660778d67d 100644
--- a/crawl-ref/source/maps.cc
+++ b/crawl-ref/source/maps.cc
@@ -283,21 +283,6 @@ int random_map_for_place(const std::string &place, bool want_minivault)
return (mapindex);
}
-int find_map_named(const std::string &name)
-{
- if (name.empty())
- return (-1);
-
-#ifdef DEBUG_DIAGNOSTICS
- mprf(MSGCH_DIAGNOSTICS, "Looking for map named \"%s\"", name.c_str());
-#endif
- for (unsigned i = 0, size = vdefs.size(); i < size; ++i)
- if (vdefs[i].name == name)
- return (i);
-
- return (-1);
-}
-
int random_map_for_depth(int depth, bool want_minivault)
{
int mapindex = -1;