mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 14:02:05 -08:00
* God-Eternal dies abilities - fixed rollback error in rare cases
This commit is contained in:
parent
87d8383eb8
commit
e1c7943636
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ class GodEternalEffect extends OneShotEffect {
|
|||
return false;
|
||||
}
|
||||
Card card = game.getCard(mor.getSourceId());
|
||||
if (card.getZoneChangeCounter(game) - 1 != mor.getZoneChangeCounter()) {
|
||||
if (card == null || card.getZoneChangeCounter(game) - 1 != mor.getZoneChangeCounter()) {
|
||||
return false;
|
||||
}
|
||||
return player.putCardOnTopXOfLibrary(card, game, source, 3);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue