Fix Hidetsugu and Kairi's ability to actually exile. (#10282)

This commit is contained in:
Grath 2023-04-26 16:06:59 -04:00 committed by GitHub
parent e8c9bb17e1
commit f8d23ff56b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,7 +83,7 @@ class HidetsuguAndKairiEffect extends OneShotEffect {
return false;
}
Card card = player.getLibrary().getFromTop(game);
if (card == null) {
if (card == null || !player.moveCardsToExile(card, source, game, true, null, "")) {
return false;
}
opponent.loseLife(card.getManaValue(), game, source, false);