* Steam Augury - removed wrong target opponent object (fixes #3393).

This commit is contained in:
LevelX2 2017-05-18 17:04:12 +02:00
parent d686af8890
commit 376d82be99

View file

@ -57,12 +57,10 @@ import mage.util.GameLog;
public class SteamAugury extends CardImpl { public class SteamAugury extends CardImpl {
public SteamAugury(UUID ownerId, CardSetInfo setInfo) { public SteamAugury(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{2}{U}{R}"); super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{U}{R}");
// Reveal the top five cards of your library and separate them into two piles. An opponent chooses one of those piles. Put that pile into your hand and the other into your graveyard. // Reveal the top five cards of your library and separate them into two piles. An opponent chooses one of those piles. Put that pile into your hand and the other into your graveyard.
this.getSpellAbility().addEffect(new SteamAuguryEffect()); this.getSpellAbility().addEffect(new SteamAuguryEffect());
this.getSpellAbility().addTarget(new TargetOpponent());
} }
public SteamAugury(final SteamAugury card) { public SteamAugury(final SteamAugury card) {