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.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 857daf5109..e09e30410b 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -2886,6 +2886,17 @@ int melee_attack::mons_calc_damage(const mon_attack_def &attk)
if (water_attack)
damage *= 2;
+ // If the defender is asleep, the attacker gets a stab.
+ if (defender && defender->asleep())
+ {
+ damage = damage * 5 / 2;
+#ifdef DEBUG_DIAGNOSTICS
+ mprf(MSGCH_DIAGNOSTICS, "Stab damage vs %s: %d",
+ defender->name(DESC_PLAIN).c_str(),
+ damage);
+#endif
+ }
+
return (mons_apply_defender_ac(damage, damage_max));
}