From dceabb729aef50d3bc16d726789b3450ed16b495 Mon Sep 17 00:00:00 2001 From: Alex Vasile <48962821+Alex-Vasile@users.noreply.github.com> Date: Sat, 27 Aug 2022 15:24:40 -0400 Subject: [PATCH] [CLB] Fix Your Temple Is Under Attack drawing incorrect numebr of cards. Closes #9425. --- Mage.Sets/src/mage/cards/y/YourTempleIsUnderAttack.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/y/YourTempleIsUnderAttack.java b/Mage.Sets/src/mage/cards/y/YourTempleIsUnderAttack.java index 2cdc2bbe8f..186f4348da 100644 --- a/Mage.Sets/src/mage/cards/y/YourTempleIsUnderAttack.java +++ b/Mage.Sets/src/mage/cards/y/YourTempleIsUnderAttack.java @@ -31,7 +31,7 @@ public final class YourTempleIsUnderAttack extends CardImpl { // • Strike a Deal — You and target opponent each draw two cards. this.getSpellAbility().addMode(new Mode( - new DrawCardSourceControllerEffect(1).setText("you") + new DrawCardSourceControllerEffect(2).setText("you") ).addEffect(new DrawCardTargetEffect(2) .setText("and target opponent each draw two cards") ).withFlavorWord("Strike a Deal"));