From dbb520d605af5f84f3966da46390b2405992e338 Mon Sep 17 00:00:00 2001 From: xenohedron Date: Sun, 18 Feb 2024 13:22:30 -0500 Subject: [PATCH] fix Wojek Investigator --- Mage.Sets/src/mage/cards/w/WojekInvestigator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/w/WojekInvestigator.java b/Mage.Sets/src/mage/cards/w/WojekInvestigator.java index f59970278c9..4993b5fb578 100644 --- a/Mage.Sets/src/mage/cards/w/WojekInvestigator.java +++ b/Mage.Sets/src/mage/cards/w/WojekInvestigator.java @@ -42,7 +42,7 @@ public final class WojekInvestigator extends CardImpl { // At the beginning of your upkeep, investigate once for each opponent who has more cards in hand than you. this.addAbility(new BeginningOfUpkeepTriggeredAbility( - new InvestigateEffect() + new InvestigateEffect(WojekInvestigatorValue.instance) .setText("investigate once for each opponent who has more cards in hand than you"), TargetController.YOU, false ).addHint(WojekInvestigatorValue.getHint()));