From ef7c2fcb2858810418bdc5d6c44d32e2294c8d35 Mon Sep 17 00:00:00 2001 From: xenohedron Date: Fri, 12 Jul 2024 23:49:59 -0400 Subject: [PATCH] fix Byway Barterer --- Mage.Sets/src/mage/cards/b/BywayBarterer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/b/BywayBarterer.java b/Mage.Sets/src/mage/cards/b/BywayBarterer.java index dc935d0d7ed..b99de0018b3 100644 --- a/Mage.Sets/src/mage/cards/b/BywayBarterer.java +++ b/Mage.Sets/src/mage/cards/b/BywayBarterer.java @@ -31,7 +31,7 @@ public final class BywayBarterer extends CardImpl { // Whenever you expend 4, you may discard your hand. If you do, draw two cards. this.addAbility(new ExpendTriggeredAbility(new DoIfCostPaid( - new DrawCardSourceControllerEffect(1), new DiscardHandCost() + new DrawCardSourceControllerEffect(2), new DiscardHandCost() ), ExpendTriggeredAbility.Expend.FOUR)); }