From 661da6153e41dbd00008260d4d50572312572897 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 24 Feb 2015 23:50:44 +0100 Subject: [PATCH] * Contaminated Bond - Fixed that the damage was wrongly dealt to aura controller instead of enchanted creatures controller. --- .../src/mage/sets/riseoftheeldrazi/ContaminatedGround.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage.Sets/src/mage/sets/riseoftheeldrazi/ContaminatedGround.java b/Mage.Sets/src/mage/sets/riseoftheeldrazi/ContaminatedGround.java index 3374eecd58..5a2595a05f 100644 --- a/Mage.Sets/src/mage/sets/riseoftheeldrazi/ContaminatedGround.java +++ b/Mage.Sets/src/mage/sets/riseoftheeldrazi/ContaminatedGround.java @@ -66,8 +66,10 @@ public class ContaminatedGround extends CardImpl { this.getSpellAbility().addEffect(new AttachEffect(Outcome.Detriment)); Ability ability = new EnchantAbility(auraTarget.getTargetName()); this.addAbility(ability); + // Enchanted land is a Swamp. this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BecomesBasicLandEnchantedEffect("Swamp"))); + // Whenever enchanted land becomes tapped, its controller loses 2 life. this.addAbility(new ContaminatedGroundAbility()); }