mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
Integer fix for opponent scouting effect
This commit is contained in:
parent
2274562982
commit
a500c8fbdb
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue