mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
[ZNR] fixed Skyclave Apparition error when leaving the battlefield before first trigger resolves (#7046)
This commit is contained in:
parent
c11ba5b82a
commit
c60a01b2fc
1 changed files with 3 additions and 0 deletions
|
@ -90,6 +90,9 @@ class SkyclaveApparitionEffect extends OneShotEffect {
|
|||
ExileZone exile = game.getExile().getExileZone(
|
||||
CardUtil.getExileZoneId(game, source.getSourceId(), permanentLeftBattlefield.getZoneChangeCounter(game))
|
||||
);
|
||||
if (exile == null || exile.isEmpty()) {
|
||||
return false;
|
||||
}
|
||||
// From ZNR Release Notes:
|
||||
// https://magic.wizards.com/en/articles/archive/feature/zendikar-rising-release-notes-2020-09-10
|
||||
// If Skyclave Apparition's first ability exiled more than one card owned by a single player,
|
||||
|
|
Loading…
Reference in a new issue