From f683ce74d6bcf30fa2bc11168c850004e6b100fd Mon Sep 17 00:00:00 2001 From: "Alex W. Jackson" Date: Sun, 14 Aug 2022 12:35:40 -0400 Subject: [PATCH] Fix #9371 --- Mage.Sets/src/mage/cards/g/Geistwave.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/g/Geistwave.java b/Mage.Sets/src/mage/cards/g/Geistwave.java index b21a901bc7..869dfed9f0 100644 --- a/Mage.Sets/src/mage/cards/g/Geistwave.java +++ b/Mage.Sets/src/mage/cards/g/Geistwave.java @@ -57,7 +57,7 @@ class GeistwaveEffect extends OneShotEffect { @Override public boolean apply(Game game, Ability source) { Player player = game.getPlayer(source.getControllerId()); - Permanent permanent = game.getPermanent(source.getControllerId()); + Permanent permanent = game.getPermanent(targetPointer.getFirst(game, source)); if (player == null || permanent == null) { return false; }