mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00: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
|
||||
Player player = game.getPlayer(cardToCheck.getOwnerId());
|
||||
if (player == null) {
|
||||
if (player == null || !player.getId().equals(affectedControllerId)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@ public class PlayTheTopCardEffect extends AsThoughEffectImpl {
|
|||
|
||||
// must be your card
|
||||
Player player = game.getPlayer(cardToCheck.getOwnerId());
|
||||
if (player == null) {
|
||||
if (player == null || !player.getId().equals(affectedControllerId)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue