From 5c76228e74832ac1b6d629cb2d7dd14746b4413c Mon Sep 17 00:00:00 2001 From: Jeff Wadsworth Date: Tue, 19 Oct 2021 16:31:22 -0500 Subject: [PATCH] - fixed failing test from previous commit. The "game" parameter can't be used for Caller of the Hunt. --- Mage.Sets/src/mage/cards/c/CallerOfTheHunt.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/c/CallerOfTheHunt.java b/Mage.Sets/src/mage/cards/c/CallerOfTheHunt.java index e934e95d451..6a10b85f2b3 100644 --- a/Mage.Sets/src/mage/cards/c/CallerOfTheHunt.java +++ b/Mage.Sets/src/mage/cards/c/CallerOfTheHunt.java @@ -119,7 +119,7 @@ enum CallerOfTheHuntAdjuster implements CostAdjuster { effectPowerToughness.setText(""); SimpleStaticAbility setPT = new SimpleStaticAbility(Zone.ALL, effectPowerToughness); GainAbilityTargetEffect gainAbility = new GainAbilityTargetEffect(setPT, Duration.EndOfGame); - gainAbility.setTargetPointer(new FixedTarget(ability.getSourceId(), game)); + gainAbility.setTargetPointer(new FixedTarget(ability.getSourceId())); game.getState().addEffect(gainAbility, ability); } }