From 9f1bde77a7bb7e70701c934e3a440534f9b7c504 Mon Sep 17 00:00:00 2001 From: Adam Borowski Date: Thu, 22 Oct 2009 14:32:53 +0200 Subject: Fix another case of reversed speed. --- crawl-ref/source/mon-util.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'crawl-ref/source/mon-util.cc') diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc index f841e2d781..81258cbdc6 100644 --- a/crawl-ref/source/mon-util.cc +++ b/crawl-ref/source/mon-util.cc @@ -513,6 +513,10 @@ bool mons_is_stationary(const monsters *mon) bool mons_is_fast(const monsters *mon) { +#ifdef DEBUG_DIAGNOSTICS + mprf(MSGCH_DIAGNOSTICS, "Your delay: %d, your speed: %d, mon speed: %d", + player_movement_speed(), 100/player_movement_speed(), mon->speed); +#endif return (mon->speed > 100/player_movement_speed()); } -- cgit v1.2.3-54-g00ecf