summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monspeak.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-10 13:44:40 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-10 13:44:40 +0000
commit880cd5a90a6ab9e5c7cc5bc84d03fa0c8827f800 (patch)
tree564424003240441ca10e290f1c754cdbd72093f9 /crawl-ref/source/monspeak.cc
parent5e7882be38147d8cce931baa61a9c9d868c3576a (diff)
downloadcrawl-ref-880cd5a90a6ab9e5c7cc5bc84d03fa0c8827f800.tar.gz
crawl-ref-880cd5a90a6ab9e5c7cc5bc84d03fa0c8827f800.zip
Add more orc speech, courtesy of David.
Add "neutral" prefix for speech lookup, currently unused. (One of these days I'll need to update monster_speech.txt *yet again*.) Also: tweak modification scroll prompt to "Use on which item?" as suggested by Eino in BR 1910782. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3579 c06c8d41-db1a-0410-9941-cceddc491573
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");