* Opt - Fixed missing reveal window.

This commit is contained in:
LevelX2 2014-10-29 14:18:16 +01:00
parent 5c05e7885c
commit d0c055c5fd
2 changed files with 6 additions and 3 deletions

View file

@ -28,7 +28,6 @@
package mage.sets.invasion;
import java.util.UUID;
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
import mage.abilities.effects.common.LookLibraryMayPutToBottomEffect;
import mage.cards.CardImpl;
@ -48,8 +47,8 @@ public class Opt extends CardImpl {
this.color.setBlue(true);
// Look at the top card of your library. You may put that card on the bottom of your library.
// This is functionally the same as scry, copy scry effect, removing "scry", unless theres a simpler way im overlooking?
this.getSpellAbility().addEffect(new LookLibraryMayPutToBottomEffect());
// Draw a card.
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
}