mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Fixed Crucible of Worlds allowing lands to be played from opponent's graveyard (fixes #7645)
This commit is contained in:
parent
87c272bf06
commit
4a3679285e
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ public class PlayLandsFromGraveyardControllerEffect 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