mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
* God Eternal Kefnet - fixed rollback error on empty library;
This commit is contained in:
parent
cc1840b109
commit
24fa917784
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ class GodEternalKefnetDrawCardReplacementEffect extends ReplacementEffectImpl {
|
|||
return false;
|
||||
}
|
||||
|
||||
Card topCard = you.getLibrary().getTopCards(game, 1).iterator().next();
|
||||
Card topCard = you.getLibrary().getFromTop(game);
|
||||
if (topCard == null) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue