mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Fix Hidetsugu and Kairi's ability to actually exile. (#10282)
This commit is contained in:
parent
e8c9bb17e1
commit
f8d23ff56b
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ class HidetsuguAndKairiEffect extends OneShotEffect {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
Card card = player.getLibrary().getFromTop(game);
|
Card card = player.getLibrary().getFromTop(game);
|
||||||
if (card == null) {
|
if (card == null || !player.moveCardsToExile(card, source, game, true, null, "")) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
opponent.loseLife(card.getManaValue(), game, source, false);
|
opponent.loseLife(card.getManaValue(), game, source, false);
|
||||||
|
|
Loading…
Reference in a new issue