From 4fabc4c70ed92bc64723e0c9f928f9f8a64a6f4a Mon Sep 17 00:00:00 2001 From: grimreap124 <19590931+grimreap124@users.noreply.github.com> Date: Sat, 18 May 2024 21:13:55 +1000 Subject: [PATCH] fix [OTJ] Hollow Marauder discard (#12255) fixes #12254 --- Mage.Sets/src/mage/cards/h/HollowMarauder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }