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.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/maps.cc b/crawl-ref/source/maps.cc
index 518037e585..426136969b 100644
--- a/crawl-ref/source/maps.cc
+++ b/crawl-ref/source/maps.cc
@@ -318,6 +318,7 @@ static bool map_has_no_tags(const map_def &map, I begin, I end)
for ( ; begin != end; ++begin)
if (map.has_tag(*begin))
return (false);
+
return (true);
}
@@ -331,7 +332,7 @@ static bool vault_unforbidden(const map_def &map)
static bool map_matches_layout_type(const map_def &map)
{
if (dgn_Layout_Type.empty() || !map.has_tag_prefix("layout_"))
- return true;
+ return (true);
return map.has_tag("layout_" + dgn_Layout_Type);
}
@@ -341,6 +342,7 @@ int find_map_by_name(const std::string &name)
for (unsigned i = 0, size = vdefs.size(); i < size; ++i)
if (vdefs[i].name == name)
return (i);
+
return (-1);
}