From 880cd5a90a6ab9e5c7cc5bc84d03fa0c8827f800 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Mon, 10 Mar 2008 13:44:40 +0000 Subject: 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 --- crawl-ref/source/monspeak.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'crawl-ref/source/monspeak.cc') 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 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"); -- cgit v1.2.3-54-g00ecf