Fix Jace, Wielder of Mysteries +1 ability

Fixes #5684
This commit is contained in:
Thomas Winwood 2019-04-06 21:49:00 +01:00
parent 80e7593bb1
commit 08f0d0c221

View file

@ -17,6 +17,7 @@ import mage.constants.SuperType;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.players.Player;
import mage.target.TargetPlayer;
import java.util.UUID;
@ -39,6 +40,7 @@ public final class JaceWielderOfMysteries extends CardImpl {
// +1 Target player puts the top two cards of their library into their graveyard. Draw a card.
Ability ability = new LoyaltyAbility(new PutLibraryIntoGraveTargetEffect(2), 1);
ability.addTarget(new TargetPlayer());
ability.addEffect(new DrawCardSourceControllerEffect(1));
this.addAbility(ability);