fixed Shipwreck Looter choosing a target for no reason

This commit is contained in:
Evan Kranzler 2017-09-20 16:36:30 -04:00
parent e39ed38e69
commit b9760962f2

View file

@ -38,7 +38,6 @@ import mage.constants.SubType;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.target.common.TargetOpponent;
import mage.watchers.common.PlayerAttackedWatcher;
/**
@ -60,7 +59,6 @@ public class ShipwreckLooter extends CardImpl {
new EntersBattlefieldTriggeredAbility(new DrawDiscardControllerEffect(1, 1, true)),
RaidCondition.instance,
"<i>Raid</i> - When {this} enters the battlefield,if you attacked with a creature this turn, you may draw a card. If you do, discard a card.");
ability.addTarget(new TargetOpponent());
this.addAbility(ability, new PlayerAttackedWatcher());
}