* Release to the Wind - Fixed that it doesn't let you cast the cards it exiles (fixes #6758).

This commit is contained in:
LevelX2 2020-07-03 14:54:08 +02:00
parent d4711b78d4
commit e937999b96
2 changed files with 5 additions and 4 deletions

View file

@ -93,6 +93,11 @@ public class PlayFromNotOwnHandZoneTargetEffect extends AsThoughEffectImpl {
return false;
}
break;
case OWNER:
if (playerId != game.getCard(objectId).getOwnerId()) {
return false;
}
break;
case ANY:
break;
}