Integer fix for opponent scouting effect

This commit is contained in:
Zzooouhh 2017-10-13 00:18:42 +02:00 committed by GitHub
parent 2274562982
commit a500c8fbdb

View file

@ -111,7 +111,7 @@ class SecondSightEffect extends OneShotEffect {
return false;
}
Cards cards = new CardsImpl();
int count = Math.min(player.getLibrary().size(), 3);
int count = Math.min(player.getLibrary().size(), 5);
for (int i = 0; i < count; i++) {
Card card = player.getLibrary().removeFromTop(game);
if (card != null) {