Fixed Crucible of Worlds allowing lands to be played from opponent's graveyard (fixes #7645)

This commit is contained in:
Daniel Bomar 2021-03-04 12:55:49 -06:00
parent 87c272bf06
commit 4a3679285e
No known key found for this signature in database
GPG key ID: C86C8658F4023918

View file

@ -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;
}