summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2010-01-08 18:58:01 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2010-01-08 18:58:26 +1000
commit1f8eaa7055fd9bddf12b37f1c258106185c34969 (patch)
tree9bfb7f923087ab82b9f96026aca9d75314aa17fb /crawl-ref/source/directn.cc
parent1e193cb797ba5696c952ba05420220339e60a668 (diff)
downloadcrawl-ref-1f8eaa7055fd9bddf12b37f1c258106185c34969.tar.gz
crawl-ref-1f8eaa7055fd9bddf12b37f1c258106185c34969.zip
Mara's summoned ghosts are "illusions".
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index 8e17763165..7104d98cb3 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -3235,7 +3235,12 @@ std::string get_monster_equipment_desc(const monsters *mon, bool full_desc,
else if (mon->type == MONS_PANDEMONIUM_DEMON)
str += "pandemonium demon";
else if (mon->type == MONS_PLAYER_GHOST)
- str += "ghost";
+ {
+ if (mon->is_summoned())
+ str += "illusion";
+ else
+ str += "ghost";
+ }
else
str += "mimic";
}