summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
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: