summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/hiscores.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-11-13 21:58:15 +0100
committerAdam Borowski <kilobyte@angband.pl>2009-11-13 22:15:54 +0100
commit13ac52b42d87cf36953ae807b88c49c62a491211 (patch)
treea2cc5661e4de4fa1fcf755b37d2739b8fefeb70c /crawl-ref/source/hiscores.cc
parentca91dc75f90d9ecbaf17e890e3eb63254ec054b9 (diff)
downloadcrawl-ref-13ac52b42d87cf36953ae807b88c49c62a491211.tar.gz
crawl-ref-13ac52b42d87cf36953ae807b88c49c62a491211.zip
Clean up death reasons.
Diffstat (limited to 'crawl-ref/source/hiscores.cc')
-rw-r--r--crawl-ref/source/hiscores.cc28
1 files changed, 4 insertions, 24 deletions
diff --git a/crawl-ref/source/hiscores.cc b/crawl-ref/source/hiscores.cc
index d505097907..2eca91acc0 100644
--- a/crawl-ref/source/hiscores.cc
+++ b/crawl-ref/source/hiscores.cc
@@ -419,12 +419,12 @@ static void _hs_write( FILE *scores, scorefile_entry &se )
static const char *kill_method_names[] =
{
- "mon", "pois", "cloud", "beam", "deaths_door", "lava", "water",
+ "mon", "pois", "cloud", "beam", "lava", "water",
"stupidity", "weakness", "clumsiness", "trap", "leaving", "winning",
"quitting", "draining", "starvation", "freezing", "burning",
- "wild_magic", "xom", "statue", "rotting", "targetting", "spore",
- "tso_smiting", "petrification", "unknown", "something",
- "falling_down_stairs", "acid", "curare", "melting", "bleeding",
+ "wild_magic", "xom", "rotting", "targetting", "spore",
+ "tso_smiting", "petrification", "something",
+ "falling_down_stairs", "acid", "curare",
"beogh_smiting", "divine_wrath", "bounce", "reflect", "self_aimed",
"falling_through_gate"
};
@@ -1565,13 +1565,6 @@ std::string scorefile_entry::death_description(death_desc_verbosity verbosity)
}
break;
-/* deprecated */
-/*
- case KILLED_BY_DEATHS_DOOR:
- desc += terse? "Death's door" : "Knocked on Death's door";
- break;
-*/
-
case KILLED_BY_LAVA:
if (terse)
desc += "lava";
@@ -1693,11 +1686,6 @@ std::string scorefile_entry::death_description(death_desc_verbosity verbosity)
needs_damage = true;
break;
- case KILLED_BY_STATUE:
- desc += terse? "statue" : "Killed by a statue";
- needs_damage = true;
- break;
-
case KILLED_BY_ROTTING:
desc += terse? "rotting" : "Rotted away";
break;
@@ -1818,14 +1806,6 @@ std::string scorefile_entry::death_description(death_desc_verbosity verbosity)
desc += terse? "asphyx" : "Asphyxiated";
break;
- case KILLED_BY_MELTING:
- desc += terse? "melted" : " melted into a puddle";
- break;
-
- case KILLED_BY_BLEEDING:
- desc += terse? "bleeding" : " bled to death";
- break;
-
case KILLED_BY_DIVINE_WRATH:
if (terse)
desc += "divine wrath";