From 163601f0056b50e3d70b385e0949b01b9d67cf39 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Mon, 25 Jun 2018 09:13:42 -0400 Subject: [PATCH] fixed Jace, the Living Guildpact not having a third ability --- Mage.Sets/src/mage/cards/j/JaceTheLivingGuildpact.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/j/JaceTheLivingGuildpact.java b/Mage.Sets/src/mage/cards/j/JaceTheLivingGuildpact.java index d2a30b37c56..bf09d707176 100644 --- a/Mage.Sets/src/mage/cards/j/JaceTheLivingGuildpact.java +++ b/Mage.Sets/src/mage/cards/j/JaceTheLivingGuildpact.java @@ -1,4 +1,3 @@ - package mage.cards.j; import java.util.UUID; @@ -55,6 +54,7 @@ public final class JaceTheLivingGuildpact extends CardImpl { // -8: Each player shuffles their hand and graveyard into their library. You draw seven cards. ability = new LoyaltyAbility(new ShuffleHandGraveyardAllEffect(), -8); ability.addEffect(new DrawCardSourceControllerEffect(7).setText("You draw seven cards")); + this.addAbility(ability); }