From 2cbe607e7b62e36b91bbeb746126eea45d6a2320 Mon Sep 17 00:00:00 2001 From: jeffwadsworth Date: Mon, 29 Jun 2020 15:41:37 -0500 Subject: [PATCH] - Fixed #6740 --- .../src/mage/cards/t/TorbranThaneOfRedFell.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Mage.Sets/src/mage/cards/t/TorbranThaneOfRedFell.java b/Mage.Sets/src/mage/cards/t/TorbranThaneOfRedFell.java index 659c6588b9..b4b838c227 100644 --- a/Mage.Sets/src/mage/cards/t/TorbranThaneOfRedFell.java +++ b/Mage.Sets/src/mage/cards/t/TorbranThaneOfRedFell.java @@ -30,7 +30,8 @@ public final class TorbranThaneOfRedFell extends CardImpl { this.power = new MageInt(2); this.toughness = new MageInt(4); - // If a red source you control would deal damage to an opponent or a permanent an opponent controls, it deals that much damage plus 2 instead. + // If a red source you control would deal damage to an opponent or a + // permanent an opponent controls, it deals that much damage plus 2 instead. this.addAbility(new SimpleStaticAbility(new TorbranThaneOfRedFellEffect())); } @@ -48,8 +49,8 @@ class TorbranThaneOfRedFellEffect extends ReplacementEffectImpl { TorbranThaneOfRedFellEffect() { super(Duration.WhileOnBattlefield, Outcome.Damage); - this.staticText = "If a red source you control would deal damage to an opponent " + - "or a permanent an opponent controls, it deals that much damage plus 2 instead."; + this.staticText = "If a red source you control would deal damage to an opponent " + + "or a permanent an opponent controls, it deals that much damage plus 2 instead."; } private TorbranThaneOfRedFellEffect(final TorbranThaneOfRedFellEffect effect) { @@ -65,9 +66,9 @@ class TorbranThaneOfRedFellEffect extends ReplacementEffectImpl { @Override public boolean checksEventType(GameEvent event, Game game) { switch (event.getType()) { - case DAMAGE_CREATURE: - case DAMAGE_PLANESWALKER: - case DAMAGE_PLAYER: + case DAMAGED_CREATURE: + case DAMAGED_PLANESWALKER: + case DAMAGED_PLAYER: return true; default: return false;