mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
* Release to the Wind - Fixed that it doesn't let you cast the cards it exiles (fixes #6758).
This commit is contained in:
parent
d4711b78d4
commit
e937999b96
2 changed files with 5 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue