summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-speak.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-02-02 02:06:18 -0500
committerNeil Moore <neil@s-z.org>2014-02-02 02:20:34 -0500
commit3f6747c8e679d7f924ce9579b22ad6673b4db4c6 (patch)
tree1238ab26831b75a23d5f4bd047bc32feb540b726 /crawl-ref/source/mon-speak.cc
parent8eed16d19cacd2b68218bed7603aa05e63bbcced (diff)
downloadcrawl-ref-3f6747c8e679d7f924ce9579b22ad6673b4db4c6.tar.gz
crawl-ref-3f6747c8e679d7f924ce9579b22ad6673b4db4c6.zip
Formatting fixes.
Diffstat (limited to 'crawl-ref/source/mon-speak.cc')
-rw-r--r--crawl-ref/source/mon-speak.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-speak.cc b/crawl-ref/source/mon-speak.cc
index f37e53f2a2..5daac51836 100644
--- a/crawl-ref/source/mon-speak.cc
+++ b/crawl-ref/source/mon-speak.cc
@@ -296,7 +296,8 @@ static string _get_speak_string(const vector<string> &prefixes,
int duration = 1;
if (mons->hit_points <= 0)
{
- if (mons->type == MONS_NATASHA && mons->hit_dice == 1) //let her have separate death/permadeath lines
+ //let her have separate death/permadeath lines
+ if (mons->type == MONS_NATASHA && mons->hit_dice == 1)
key += " permanently";
key += " killed";
}