summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mapdef.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-09-03 23:31:32 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-09-03 23:50:29 +0200
commitab4462479e59fe30967ef5809249d1836a66182e (patch)
treebd7cfdc8468a1f594702a2cab189c223d60213c2 /crawl-ref/source/mapdef.cc
parent6e116258be13d26cf53e852f8406ece0c6863e16 (diff)
downloadcrawl-ref-ab4462479e59fe30967ef5809249d1836a66182e.tar.gz
crawl-ref-ab4462479e59fe30967ef5809249d1836a66182e.zip
Formatting/brace/trivial returns fixes.
Diffstat (limited to 'crawl-ref/source/mapdef.cc')
-rw-r--r--crawl-ref/source/mapdef.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mapdef.cc b/crawl-ref/source/mapdef.cc
index a5e522848d..cfc641ca8c 100644
--- a/crawl-ref/source/mapdef.cc
+++ b/crawl-ref/source/mapdef.cc
@@ -3537,7 +3537,7 @@ mons_spec mons_list::get_monster(int slot_index, int list_index) const
if (list_index < 0 || list_index >= (int)list.size())
return mons_spec(RANDOM_MONSTER);
- return (list[list_index]);
+ return list[list_index];
}
void mons_list::clear()