mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 02:52:02 -08:00
Case the Joint - fixed that it doesn't look at other players library (related to #12151);
This commit is contained in:
parent
5784bce025
commit
6ca94e11ff
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ class CaseTheJointEffect extends OneShotEffect {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
for (UUID playerId : game.getState().getPlayersInRange(source.getControllerId(), game)) {
|
for (UUID playerId : game.getState().getPlayersInRange(source.getControllerId(), game)) {
|
||||||
Player player = game.getPlayer(source.getControllerId());
|
Player player = game.getPlayer(playerId);
|
||||||
if (player == null) {
|
if (player == null) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue