summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-09-20 19:57:21 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-09-20 19:57:21 +0000
commit19c33df1b50ab7270b923c2a8cfdb6853104e030 (patch)
treee416b0027bd8dfa669f650299a204f9b3b0f9a75 /crawl-ref/source/acr.cc
parentcb57dfea1ea5e58d45f8f1d4378369bdaf975fe5 (diff)
downloadcrawl-ref-19c33df1b50ab7270b923c2a8cfdb6853104e030.tar.gz
crawl-ref-19c33df1b50ab7270b923c2a8cfdb6853104e030.zip
Fix exhaustion not slowing the player, unless hasted. Whoops!
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10753 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 42a1b8a72a..3e79db8fee 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -2395,9 +2395,9 @@ static void _decrement_durations()
{
// Silently cancel haste, then slow player.
you.duration[DUR_HASTE] = 0;
- slow_player(dur);
}
}
+ slow_player(dur);
}
make_hungry(700, true);