summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.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/describe.cc
parent1e193cb797ba5696c952ba05420220339e60a668 (diff)
downloadcrawl-ref-1f8eaa7055fd9bddf12b37f1c258106185c34969.tar.gz
crawl-ref-1f8eaa7055fd9bddf12b37f1c258106185c34969.zip
Mara's summoned ghosts are "illusions".
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 622eb684e3..4baee51699 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2916,7 +2916,10 @@ void get_monster_db_desc(const monsters& mons, describe_info &inf,
}
case MONS_PLAYER_GHOST:
- inf.body << "The apparition of " << get_ghost_description(mons) << ".$";
+ if (mons.is_summoned())
+ inf.body << "An illusion of " << get_ghost_description(mons) << ".$";
+ else
+ inf.body << "The apparition of " << get_ghost_description(mons) << ".$";
break;
case MONS_PANDEMONIUM_DEMON: