From 5784bce025975d509db614ea9693dd3af07eb71a Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sat, 20 Apr 2024 23:46:10 +0400 Subject: [PATCH] Disciple of Caelus Nin - fixed that it doesn't ask other players to keep permanents (closes #12151); --- Mage.Sets/src/mage/cards/d/DiscipleOfCaelusNin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/d/DiscipleOfCaelusNin.java b/Mage.Sets/src/mage/cards/d/DiscipleOfCaelusNin.java index 25f1103f465..b788d43d231 100644 --- a/Mage.Sets/src/mage/cards/d/DiscipleOfCaelusNin.java +++ b/Mage.Sets/src/mage/cards/d/DiscipleOfCaelusNin.java @@ -77,7 +77,7 @@ class DiscipleOfCaelusNinFirstEffect extends OneShotEffect { toKeep.add(source.getSourceId()); } for (UUID playerId : game.getState().getPlayersInRange(source.getControllerId(), game)) { - Player player = game.getPlayer(source.getControllerId()); + Player player = game.getPlayer(playerId); if (player == null) { continue; }