summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_mons.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-10-05 14:03:46 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-10-05 14:03:46 +0200
commitbc9b735b081a450dc6be3425e04fcc01e012c149 (patch)
tree73b0d777f96faf92888f70c9d4c893760e6a7043 /crawl-ref/source/l_mons.cc
parenta98f0842a671faaad92e9821ab3c7c21d8aa866b (diff)
downloadcrawl-ref-bc9b735b081a450dc6be3425e04fcc01e012c149.tar.gz
crawl-ref-bc9b735b081a450dc6be3425e04fcc01e012c149.zip
Reformat multi-line array literals.
Diffstat (limited to 'crawl-ref/source/l_mons.cc')
-rw-r--r--crawl-ref/source/l_mons.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/l_mons.cc b/crawl-ref/source/l_mons.cc
index e590ceb331..65491f84e1 100644
--- a/crawl-ref/source/l_mons.cc
+++ b/crawl-ref/source/l_mons.cc
@@ -537,7 +537,8 @@ static int monster_get(lua_State *ls)
return 0;
}
-static const char *_monster_behaviour_names[] = {
+static const char *_monster_behaviour_names[] =
+{
"sleep",
"wander",
"seek",
@@ -546,7 +547,7 @@ static const char *_monster_behaviour_names[] = {
"panic",
"lurk",
"retreat",
- "withdraw"
+ "withdraw",
};
static const char* _behaviour_name(beh_type beh)