diff --git a/Mage.Sets/src/mage/cards/h/HollowMarauder.java b/Mage.Sets/src/mage/cards/h/HollowMarauder.java index 5fe86465a55..320f6a543b9 100644 --- a/Mage.Sets/src/mage/cards/h/HollowMarauder.java +++ b/Mage.Sets/src/mage/cards/h/HollowMarauder.java @@ -86,7 +86,7 @@ class HollowMarauderEffect extends OneShotEffect { public boolean apply(Game game, Ability source) { int count = 0; for (UUID targetId : getTargetPointer().getTargets(game, source)) { - Player opponent = game.getPlayer(source.getControllerId()); + Player opponent = game.getPlayer(targetId); if (opponent == null) { continue; }