From 2ce4e8e8a9ea0a27c62aa786ee11a31c65a7f648 Mon Sep 17 00:00:00 2001 From: xenohedron Date: Sat, 14 Oct 2023 14:42:13 -0400 Subject: [PATCH] fix Kogla, the Titan Ape --- Mage.Sets/src/mage/cards/k/KoglaTheTitanApe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/k/KoglaTheTitanApe.java b/Mage.Sets/src/mage/cards/k/KoglaTheTitanApe.java index ca70a1dbce8..3e5c32870e0 100644 --- a/Mage.Sets/src/mage/cards/k/KoglaTheTitanApe.java +++ b/Mage.Sets/src/mage/cards/k/KoglaTheTitanApe.java @@ -51,7 +51,7 @@ public final class KoglaTheTitanApe extends CardImpl { // When Kogla, the Titan Ape enters the battlefield, it fights up to one target creature you don't control. Ability ability = new EntersBattlefieldTriggeredAbility(new FightTargetSourceEffect() .setText("it fights up to one target creature you don't control")); - ability.addTarget(new TargetPermanent(StaticFilters.FILTER_CREATURE_YOU_DONT_CONTROL)); + ability.addTarget(new TargetPermanent(0, 1, StaticFilters.FILTER_CREATURE_YOU_DONT_CONTROL)); this.addAbility(ability); // Whenever Kogla attacks, destroy target artifact or enchantment defending player controls.