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.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/monspeak.cc b/crawl-ref/source/monspeak.cc
index 2619563f2b..86de314347 100644
--- a/crawl-ref/source/monspeak.cc
+++ b/crawl-ref/source/monspeak.cc
@@ -36,6 +36,7 @@
#include "religion.h"
#include "spells2.h"
#include "spells4.h"
+#include "state.h"
#include "stuff.h"
#include "view.h"
@@ -266,7 +267,7 @@ bool mons_speaks(const monsters *monster)
prefixes.push_back("neutral");
}
- else if (mons_friendly(monster))
+ else if (mons_friendly(monster) && !crawl_state.arena)
prefixes.push_back("friendly");
else
prefixes.push_back("hostile");