[CLB] Fix Your Temple Is Under Attack drawing incorrect numebr of cards. Closes #9425.

This commit is contained in:
Alex Vasile 2022-08-27 15:24:40 -04:00
parent f5eb036158
commit dceabb729a

View file

@ -31,7 +31,7 @@ public final class YourTempleIsUnderAttack extends CardImpl {
// Strike a Deal You and target opponent each draw two cards. // Strike a Deal You and target opponent each draw two cards.
this.getSpellAbility().addMode(new Mode( this.getSpellAbility().addMode(new Mode(
new DrawCardSourceControllerEffect(1).setText("you") new DrawCardSourceControllerEffect(2).setText("you")
).addEffect(new DrawCardTargetEffect(2) ).addEffect(new DrawCardTargetEffect(2)
.setText("and target opponent each draw two cards") .setText("and target opponent each draw two cards")
).withFlavorWord("Strike a Deal")); ).withFlavorWord("Strike a Deal"));