summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/fight.cc')
-rw-r--r--crawl-ref/source/fight.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 1e99ce93b5..0eaafa19a5 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -547,10 +547,11 @@ bool you_attack(int monster_attacked, bool unarmed_attacks)
if (you.burden_state == BS_UNENCUMBERED
&& one_chance_in(heavy_armour + 1))
{
- weapon_speed2 = 10 - you.skills[SK_UNARMED_COMBAT] / 3;
-
- if (weapon_speed2 < 4)
- weapon_speed2 = 4;
+ weapon_speed2 = 10 - you.skills[SK_UNARMED_COMBAT] / 5;
+
+ /* this shouldn't happen anyway...sanity */
+ if (weapon_speed2 < 5)
+ weapon_speed2 = 5;
}
}