From 0fbb341eac1b1356a35dd3d710e1e1563bb866fd Mon Sep 17 00:00:00 2001 From: Luna Skyrise Date: Mon, 11 May 2015 20:11:35 -0300 Subject: [PATCH] Rancid Earth: correct effect dependency --- Mage.Sets/src/mage/sets/torment/RancidEarth.java | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Mage.Sets/src/mage/sets/torment/RancidEarth.java b/Mage.Sets/src/mage/sets/torment/RancidEarth.java index 78afb2b7837..39308e07c52 100644 --- a/Mage.Sets/src/mage/sets/torment/RancidEarth.java +++ b/Mage.Sets/src/mage/sets/torment/RancidEarth.java @@ -58,7 +58,7 @@ public class RancidEarth extends CardImpl { new RancidEarthEffect(), new DestroyTargetEffect(), new CardsInControllerGraveCondition(7), - "Destroy target land.

Threshold - If seven or more cards are in your graveyard, instead destroy that land and Rancid Earth deals 1 damage to each creature and each player")); + "Destroy target land.

Threshold - If seven or more cards are in your graveyard, instead destroy that land and Rancid Earth deals 1 damage to each creature and each player.")); this.getSpellAbility().addTarget(new TargetLandPermanent()); } @@ -91,10 +91,7 @@ class RancidEarthEffect extends OneShotEffect { @Override public boolean apply(Game game, Ability source) { Effect effect1 = new DestroyTargetEffect("destroy that land"); - if (effect1.apply(game, source)) { - return new DamageEverythingEffect(1).apply(game, source); - } - - return false; + effect1.apply(game, source); + return new DamageEverythingEffect(1).apply(game, source); } }