From 1f8eaa7055fd9bddf12b37f1c258106185c34969 Mon Sep 17 00:00:00 2001 From: Jude Brown Date: Fri, 8 Jan 2010 18:58:01 +1000 Subject: Mara's summoned ghosts are "illusions". --- crawl-ref/source/describe.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/describe.cc') 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: -- cgit v1.2.3-54-g00ecf