From cbb4198487aa2b7a3e59d5ad42d29bed2058ebbd Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Thu, 3 Jul 2008 13:33:58 +0000 Subject: Change butchering prompt to hopefully be less confusing (BR 2009022). Also add a key to some kind of butchering help (may need tweaking) and 'b' is yet another synonym for 'c' but will allow Vampires to butcher a corpse they'd otherwise bottle. This only works while the prompt is given, i.e. if always_confirm_butcher is false Vampires will automatically attempt to bottle the blood in a single corpse (unless that is impossible, in which case they'll butcher it instead). Also fix corpses sometimes not being destroyed when drained by a Vampire. (Big oops!) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6366 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/command.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/command.cc') diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc index b9c51b7449..5c4b37361d 100644 --- a/crawl-ref/source/command.cc +++ b/crawl-ref/source/command.cc @@ -1688,7 +1688,6 @@ void show_targeting_help() cols.add_formatted(1, targeting_help_2, true, true); _show_keyhelp_menu(cols.formatted_lines(), false, true); } - void show_interlevel_travel_branch_help() { show_specific_help( getHelpString("interlevel-travel.branch.prompt") ); @@ -1704,6 +1703,12 @@ void show_stash_search_help() show_specific_help( getHelpString("stash-search.prompt") ); } +void show_butchering_help() +{ + show_specific_help( getHelpString("butchering") ); +} + + static void _add_formatted_keyhelp(column_composer &cols) { cols.add_formatted( -- cgit v1.2.3-54-g00ecf