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);
}
}