diff --git a/Mage.Sets/src/mage/sets/fourthedition/ErgRaiders.java b/Mage.Sets/src/mage/sets/fourthedition/ErgRaiders.java index 532891ad01..edc6362f7d 100644 --- a/Mage.Sets/src/mage/sets/fourthedition/ErgRaiders.java +++ b/Mage.Sets/src/mage/sets/fourthedition/ErgRaiders.java @@ -37,7 +37,6 @@ import mage.abilities.decorator.ConditionalTriggeredAbility; import mage.abilities.effects.common.DamageControllerEffect; import mage.cards.CardImpl; import mage.constants.CardType; -import mage.constants.Outcome; import mage.constants.Rarity; import mage.constants.TargetController; import mage.game.Game; @@ -82,9 +81,7 @@ class ErgRaidersCondition implements Condition { public boolean apply(Game game, Ability source) { Permanent raiders = game.getPermanentOrLKIBattlefield(source.getSourceId()); AttackedThisTurnWatcher watcher = (AttackedThisTurnWatcher) game.getState().getWatchers().get("AttackedThisTurn"); - if(raiders.wasControlledFromStartOfControllerTurn() && !watcher.getAttackedThisTurnCreatures().contains(raiders.getId())) { - return true; - } - return false; + // wasControlledFromStartOfControllerTurn should be checked during resolution I guess, but shouldn't be relevant + return raiders.wasControlledFromStartOfControllerTurn() && !watcher.getAttackedThisTurnCreatures().contains(raiders.getId()); } } diff --git a/Mage.Sets/src/mage/sets/mercadianmasques/SaberAnts.java b/Mage.Sets/src/mage/sets/mercadianmasques/SaberAnts.java index 04c4152524..86d7afe6d9 100644 --- a/Mage.Sets/src/mage/sets/mercadianmasques/SaberAnts.java +++ b/Mage.Sets/src/mage/sets/mercadianmasques/SaberAnts.java @@ -30,7 +30,6 @@ package mage.sets.mercadianmasques; import java.util.UUID; import mage.MageInt; import mage.abilities.Ability; -import mage.abilities.TriggeredAbilityImpl; import mage.abilities.common.DealtDamageToSourceTriggeredAbility; import mage.abilities.effects.OneShotEffect; import mage.abilities.effects.common.CreateTokenEffect; @@ -75,7 +74,7 @@ class SaberAntsEffect extends OneShotEffect { public SaberAntsEffect() { super(Outcome.Benefit); - this.staticText = "Whenever Saber Ants is dealt damage, you may put that many 1/1 green Insect creature tokens onto the battlefield."; + this.staticText = "you may put that many 1/1 green Insect creature tokens onto the battlefield"; } public SaberAntsEffect(final SaberAntsEffect effect) {