From 67c7f8f9dbea5d17bdf1ecca94c33a8ac85a5133 Mon Sep 17 00:00:00 2001 From: Charles Otto Date: Sun, 15 Nov 2009 15:21:39 -0500 Subject: Update delay for exhaustion, confusing touch, and sure blade --- crawl-ref/source/spells1.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/spells1.cc') diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc index dccf3a4516..226319fb2b 100644 --- a/crawl-ref/source/spells1.cc +++ b/crawl-ref/source/spells1.cc @@ -1536,7 +1536,7 @@ bool cast_sure_blade(int power) { if (!you.duration[DUR_SURE_BLADE]) mpr("You become one with your weapon."); - else if (you.duration[DUR_SURE_BLADE] < 25) + else if (you.duration[DUR_SURE_BLADE] < 25 * BASELINE_DELAY) mpr("Your bond becomes stronger."); you.increase_duration(DUR_SURE_BLADE, 8 + (random2(power) / 10), -- cgit v1.2.3-54-g00ecf