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; }