CMB1: Lantern of Undersight

This commit is contained in:
Hythonia
2021-03-05 18:20:34 +01:00
parent 7da8a4954b
commit d671eed1bd
2 changed files with 12 additions and 1 deletions

View File

@@ -1430,7 +1430,13 @@ public class Player extends GameEntity implements Comparable<Player> {
}
if (!library.isEmpty()) {
Card c = library.get(0);
Card c;
if (hasKeyword("You draw cards from the bottom of your library instead of the top of your library.")) {
c = library.get(library.size() - 1);
} else {
c = library.get(0);
}
List<Player> pList = Lists.newArrayList();