summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/hiscores.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/hiscores.cc')
-rw-r--r--crawl-ref/source/hiscores.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/hiscores.cc b/crawl-ref/source/hiscores.cc
index 4fa9d16826..a64b191e73 100644
--- a/crawl-ref/source/hiscores.cc
+++ b/crawl-ref/source/hiscores.cc
@@ -1200,6 +1200,10 @@ std::string scorefile_entry::death_source_desc() const
return ("");
}
+ // XXX: Deals specially with Mara's clones.
+ if (death_source == MONS_MARA_FAKE)
+ return ("an illusion of Mara");
+
// XXX no longer handles mons_num correctly! FIXME
return (!death_source_name.empty() ?
death_source_name : mons_type_name(death_source, DESC_NOCAP_A));