mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
[SNC] Fix for Currency Converter (#8928)
This commit is contained in:
commit
69008906d3
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ class CurrencyConverterExileEffect extends OneShotEffect {
|
|||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
Card card = (Card) getValue("discardedCard");
|
||||
if (player == null || card == null || card.isOwnedBy(player.getId())
|
||||
if (player == null || card == null || !card.isOwnedBy(player.getId())
|
||||
|| !Zone.GRAVEYARD.match(game.getState().getZone(card.getId()))) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue