summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.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/describe.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/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index ec681119df..9437a4c4c8 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2904,7 +2904,7 @@ void get_monster_db_desc(const monsters& mons, describe_info &inf,
<< " is incapable of using stairs.$";
}
- if (mons_is_summoned(&mons))
+ if (mons_is_summoned(&mons) && mons.type != MONS_RAKSHASA_FAKE)
{
inf.body << "$" << "This monster has been summoned, and is thus only "
"temporary. Killing it yields no experience, nutrition "