From 9ded96c815f4def98b5677f252ff4c76a8e610d7 Mon Sep 17 00:00:00 2001 From: Grath <1895280+Grath@users.noreply.github.com> Date: Fri, 6 Sep 2024 19:00:14 -0400 Subject: [PATCH] Fix filter used in Gourmand's Talent. --- Mage.Sets/src/mage/cards/g/GourmandsTalent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/g/GourmandsTalent.java b/Mage.Sets/src/mage/cards/g/GourmandsTalent.java index de5d2daa165..71c95175598 100644 --- a/Mage.Sets/src/mage/cards/g/GourmandsTalent.java +++ b/Mage.Sets/src/mage/cards/g/GourmandsTalent.java @@ -88,7 +88,7 @@ class GourmandsTalentEffect extends ContinuousEffectImpl { @Override public boolean apply(Layer layer, SubLayer sublayer, Ability source, Game game) { - for (Permanent permanent : game.getBattlefield().getActivePermanents(StaticFilters.FILTER_PERMANENT_ARTIFACT, source.getControllerId(), source, game)) { + for (Permanent permanent : game.getBattlefield().getActivePermanents(StaticFilters.FILTER_CONTROLLED_PERMANENT_ARTIFACT, source.getControllerId(), source, game)) { if (permanent.getId().equals(source.getSourceId())) { continue; }