summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/delay.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-08 15:54:02 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-08 15:54:02 +0000
commit2e6e327fcefc772e02f8d6db1232fb97aaaab597 (patch)
tree33aca0589101dcd6b3da808aa719f8b520276e2f /crawl-ref/source/delay.h
parent4a6ed4aa315d47f6ac7186eb217e08c6bea38a1d (diff)
downloadcrawl-ref-2e6e327fcefc772e02f8d6db1232fb97aaaab597.tar.gz
crawl-ref-2e6e327fcefc772e02f8d6db1232fb97aaaab597.zip
Stop butcher delays when blade hands wears off (Eva).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1801 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/delay.h')
-rw-r--r--crawl-ref/source/delay.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/delay.h b/crawl-ref/source/delay.h
index ed496aa9cc..c45d5a0b2b 100644
--- a/crawl-ref/source/delay.h
+++ b/crawl-ref/source/delay.h
@@ -14,14 +14,15 @@
#include "enum.h"
-void start_delay( int type, int turns, int parm1 = 0, int parm2 = 0 );
-void stop_delay( void );
+void start_delay( delay_type type, int turns, int parm1 = 0, int parm2 = 0 );
+void stop_delay( void );
bool you_are_delayed( void );
-int current_delay_action( void );
+delay_type current_delay_action( void );
void handle_delay( void );
bool is_run_delay(int delay);
bool is_being_butchered(const item_def &item);
+void stop_butcher_delay();
const char *activity_interrupt_name(activity_interrupt_type ai);
activity_interrupt_type get_activity_interrupt(const std::string &);