mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
Additional fixes for 4a3679285e (#7645)
This commit is contained in:
parent
b1da4d4d79
commit
654c0be1ac
2 changed files with 2 additions and 2 deletions
|
|
@ -102,7 +102,7 @@ class BolassCitadelPlayTheTopCardEffect extends AsThoughEffectImpl {
|
||||||
|
|
||||||
// must be your card
|
// must be your card
|
||||||
Player player = game.getPlayer(cardToCheck.getOwnerId());
|
Player player = game.getPlayer(cardToCheck.getOwnerId());
|
||||||
if (player == null) {
|
if (player == null || !player.getId().equals(affectedControllerId)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -82,7 +82,7 @@ public class PlayTheTopCardEffect extends AsThoughEffectImpl {
|
||||||
|
|
||||||
// must be your card
|
// must be your card
|
||||||
Player player = game.getPlayer(cardToCheck.getOwnerId());
|
Player player = game.getPlayer(cardToCheck.getOwnerId());
|
||||||
if (player == null) {
|
if (player == null || !player.getId().equals(affectedControllerId)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue