From 6ca94e11ff36baf4e189e0232a9ab97c2f495204 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sat, 20 Apr 2024 23:47:59 +0400 Subject: [PATCH] Case the Joint - fixed that it doesn't look at other players library (related to #12151); --- Mage.Sets/src/mage/cards/c/CaseTheJoint.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/c/CaseTheJoint.java b/Mage.Sets/src/mage/cards/c/CaseTheJoint.java index c8d8ad8d518..52a269576ed 100644 --- a/Mage.Sets/src/mage/cards/c/CaseTheJoint.java +++ b/Mage.Sets/src/mage/cards/c/CaseTheJoint.java @@ -60,7 +60,7 @@ class CaseTheJointEffect extends OneShotEffect { return false; } for (UUID playerId : game.getState().getPlayersInRange(source.getControllerId(), game)) { - Player player = game.getPlayer(source.getControllerId()); + Player player = game.getPlayer(playerId); if (player == null) { continue; }