* God Eternal Kefnet - fixed rollback error on empty library;

This commit is contained in:
Oleg Agafonov 2020-01-28 01:53:19 +04:00
parent cc1840b109
commit 24fa917784

View file

@ -84,7 +84,7 @@ class GodEternalKefnetDrawCardReplacementEffect extends ReplacementEffectImpl {
return false; return false;
} }
Card topCard = you.getLibrary().getTopCards(game, 1).iterator().next(); Card topCard = you.getLibrary().getFromTop(game);
if (topCard == null) { if (topCard == null) {
return false; return false;
} }