mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
Fix #8569
This commit is contained in:
parent
a8ee7b3046
commit
66aa7f9083
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ public enum DefendingPlayerOwnsCardPredicate implements ObjectSourcePlayerPredic
|
|||
|
||||
@Override
|
||||
public boolean apply(ObjectSourcePlayer<Card> input, Game game) {
|
||||
return game.getCombat().getPlayerDefenders(game, false).contains(input.getObject().getOwnerId());
|
||||
return input.getObject().isOwnedBy(game.getCombat().getDefendingPlayerId(input.getSourceId(), game));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue