Skip to content

Commit

Permalink
Additional fixes for 4a36792 (magefree#7645)
Browse files Browse the repository at this point in the history
  • Loading branch information
JayDi85 committed Mar 4, 2021
1 parent b1da4d4 commit 654c0be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Mage.Sets/src/mage/cards/b/BolassCitadel.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public boolean applies(UUID objectId, Ability source, UUID affectedControllerId,

// must be your card
Player player = game.getPlayer(cardToCheck.getOwnerId());
if (player == null) {
if (player == null || !player.getId().equals(affectedControllerId)) {
return false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public boolean applies(UUID objectId, Ability source, UUID affectedControllerId,

// must be your card
Player player = game.getPlayer(cardToCheck.getOwnerId());
if (player == null) {
if (player == null || !player.getId().equals(affectedControllerId)) {
return false;
}

Expand Down

0 comments on commit 654c0be

Please sign in to comment.