From accb7c63bf1899ca8ec31b1be024904751061eed Mon Sep 17 00:00:00 2001 From: Susucre <34709007+Susucre@users.noreply.github.com> Date: Mon, 14 Aug 2023 02:43:13 +0200 Subject: [PATCH] fix [CLB] Call to the Void (#10795) --- Mage.Sets/src/mage/cards/c/CallToTheVoid.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/c/CallToTheVoid.java b/Mage.Sets/src/mage/cards/c/CallToTheVoid.java index 0663bbf015a..5a9c7cdc29e 100644 --- a/Mage.Sets/src/mage/cards/c/CallToTheVoid.java +++ b/Mage.Sets/src/mage/cards/c/CallToTheVoid.java @@ -73,7 +73,7 @@ class CallToTheVoidEffect extends OneShotEffect { Map> map = new HashMap<>(); Set permanents = new HashSet<>(); for (UUID playerId : game.getState().getPlayersInRange(source.getControllerId(), game)) { - Player player = game.getPlayer(source.getControllerId()); + Player player = game.getPlayer(playerId); if (player != null) { chooseCreature(map, permanents, StaticFilters.FILTER_CONTROLLED_CREATURE, player, source, game); chooseCreature(map, permanents, StaticFilters.FILTER_CREATURE_YOU_DONT_CONTROL, player, source, game);