summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/hiscores.cc
diff options
context:
space:
mode:
authorStefan O'Rear <stefanor@cox.net>2009-11-13 12:26:49 -0800
committerStefan O'Rear <stefanor@cox.net>2009-11-13 12:26:49 -0800
commit7ec7eeeab0f4d6dadba493d5b11cc3a0910f6a06 (patch)
tree33f6304c1774daaffa0fe2cd8be9a4718dbb2120 /crawl-ref/source/hiscores.cc
parent7ac3138dd9288b88b2bc2781af9684a4ba53153f (diff)
downloadcrawl-ref-7ec7eeeab0f4d6dadba493d5b11cc3a0910f6a06.tar.gz
crawl-ref-7ec7eeeab0f4d6dadba493d5b11cc3a0910f6a06.zip
Add a little variety in summoned by tags
Diffstat (limited to 'crawl-ref/source/hiscores.cc')
-rw-r--r--crawl-ref/source/hiscores.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/hiscores.cc b/crawl-ref/source/hiscores.cc
index 8c87b7bc41..fdae35bc89 100644
--- a/crawl-ref/source/hiscores.cc
+++ b/crawl-ref/source/hiscores.cc
@@ -1975,12 +1975,12 @@ std::string scorefile_entry::death_description(death_desc_verbosity verbosity)
{
if (!semiverbose)
{
- desc += "... summoned by " + *it;
+ desc += "... " + *it;
desc += _hiscore_newline_string();
}
else
{
- desc += " (summoned by " + *it;
+ desc += " (" + *it;
}
}