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.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index b13b67101b..54cf63e0d0 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -2948,6 +2948,9 @@ int melee_attack::mons_to_hit()
if (weapon && weapon->base_type == OBJ_WEAPONS)
mhit += weapon->plus + property(*weapon, PWPN_HIT);
+ if (attacker->confused())
+ mhit -= 5;
+
return (mhit);
}