diff --git a/Mage/src/mage/game/combat/CombatGroup.java b/Mage/src/mage/game/combat/CombatGroup.java index ad617d158e9..5acb5f60cd6 100644 --- a/Mage/src/mage/game/combat/CombatGroup.java +++ b/Mage/src/mage/game/combat/CombatGroup.java @@ -213,7 +213,12 @@ public class CombatGroup implements Serializable, Copyable { if (blocked && canDamage(attacker, first)) { int damage = attacker.getPower().getValue(); if (hasTrample(attacker)) { - int lethalDamage = blocker.getToughness().getValue() - blocker.getDamage(); + int lethalDamage; + if (attacker.getAbilities().containsKey(DeathtouchAbility.getInstance().getId())) { + lethalDamage = 1; + } else { + lethalDamage = blocker.getToughness().getValue() - blocker.getDamage(); + } if (lethalDamage >= damage) { blocker.markDamage(damage, attacker.getId(), game, true, true); }