summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-05-28 09:28:25 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-05-28 09:28:25 +0000
commit64bceda514975079abe443208b60678d1582c42e (patch)
treed2e82c6c0fd53f747f2c1756623bc3e48df92a0e /crawl-ref/source/directn.cc
parentbb8e9480efb1259fbb2da1e07bdfc0b613c68eea (diff)
downloadcrawl-ref-64bceda514975079abe443208b60678d1582c42e.tar.gz
crawl-ref-64bceda514975079abe443208b60678d1582c42e.zip
Fix fake rakshasas being described as summoned.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9840 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index 9cccc435a1..cc6b8ea9d7 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -3065,7 +3065,7 @@ static std::string _get_monster_desc(const monsters *mon)
else if (mons_neutral(mon)) // don't differentiate between permanent or not
text += pronoun + " is indifferent to you.\n";
- if (mons_is_summoned(mon))
+ if (mons_is_summoned(mon) && mon->type != MONS_RAKSHASA_FAKE)
text += pronoun + " has been summoned.\n";
if (mon->haloed())