summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monspeak.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monspeak.cc')
-rw-r--r--crawl-ref/source/monspeak.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/monspeak.cc b/crawl-ref/source/monspeak.cc
index b0f82bfafc..83d53504b7 100644
--- a/crawl-ref/source/monspeak.cc
+++ b/crawl-ref/source/monspeak.cc
@@ -182,6 +182,8 @@ bool mons_speaks(const monsters *monster)
std::vector<std::string> prefixes;
if (monster->attitude == ATT_FRIENDLY)
prefixes.push_back("friendly");
+ else if (monster->attitude == ATT_NEUTRAL)
+ prefixes.push_back("neutral");
if (monster->behaviour == BEH_FLEE)
prefixes.push_back("fleeing");