summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-06 19:08:10 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-06 19:08:10 +0000
commit7d8f213e503f50ce492a7021e6d991e771c4e88a (patch)
tree4b42105600711dffde6a7b1156b7d9373f18129b /crawl-ref/source/monstuff.cc
parentd717830fb8d47cb6ae2fe1fedc00240e9f5f601f (diff)
downloadcrawl-ref-7d8f213e503f50ce492a7021e6d991e771c4e88a.tar.gz
crawl-ref-7d8f213e503f50ce492a7021e6d991e771c4e88a.zip
Properly use apostrophise() in a few more places.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8275 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index a03563b5d5..28d8b38baa 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -986,8 +986,8 @@ void _monster_die_cloud(const monsters* monster, bool corpse, bool silent,
simple_monster_message(monster, (prefix + msg).c_str());
if (cloud != CLOUD_NONE)
- place_cloud( cloud, monster->pos(), 1 + random2(3),
- monster->kill_alignment() );
+ place_cloud(cloud, monster->pos(), 1 + random2(3),
+ monster->kill_alignment());
}
void monster_die(monsters *monster, killer_type killer,
@@ -4258,7 +4258,8 @@ monsters *choose_random_monster_on_level(int weight,
// permitting output of "It" messages for the invisible {dlb}
// Intentionally avoids info and str_pass now. -- bwr
bool simple_monster_message(const monsters *monster, const char *event,
- msg_channel_type channel, int param,
+ msg_channel_type channel,
+ int param,
description_level_type descrip)
{