summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/delay.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-03-27 04:03:47 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-03-27 04:03:47 +0000
commitb8713981bccbb3d5ea7a98340da59aa350d8c9a8 (patch)
tree30d4f6199234247675d5d7636462256a2215b7af /crawl-ref/source/delay.cc
parent74404fdfeceba7b9d72c160f462569f0c8e2bcb9 (diff)
downloadcrawl-ref-b8713981bccbb3d5ea7a98340da59aa350d8c9a8.tar.gz
crawl-ref-b8713981bccbb3d5ea7a98340da59aa350d8c9a8.zip
Remove a reference to corpse sacrifice by butchery
Obsolete since 7d6de33069!
Diffstat (limited to 'crawl-ref/source/delay.cc')
-rw-r--r--crawl-ref/source/delay.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/crawl-ref/source/delay.cc b/crawl-ref/source/delay.cc
index 561970127f..a50d0f1d1f 100644
--- a/crawl-ref/source/delay.cc
+++ b/crawl-ref/source/delay.cc
@@ -214,12 +214,8 @@ void stop_delay(bool stop_stair_travel, bool force_unsafe)
break;
}
- const string butcher_verb =
- (delay.type == DELAY_BUTCHER ? "butchering" :
- delay.type == DELAY_BOTTLE_BLOOD ? "bottling blood from"
- : "sacrificing");
-
- mprf("You stop %s the corpse%s.", butcher_verb.c_str(),
+ mprf("You stop %s the corpse%s.",
+ delay.type == DELAY_BUTCHER ? "butchering" : "bottling blood from",
multiple_corpses ? "s" : "");
_pop_delay();