mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
Fixed a bug of PutOnLibraryTargetEffect moving the cards always only to top of library (fixes #636).
This commit is contained in:
parent
c2af7836ab
commit
f9f6fd2d2d
1 changed files with 2 additions and 2 deletions
|
|
@ -110,7 +110,7 @@ public class PutOnLibraryTargetEffect extends OneShotEffect {
|
||||||
iterator.remove();
|
iterator.remove();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
owner.putCardsOnTopOfLibrary(cardsPlayer, game, source, true);
|
owner.putCardsOnTopOfLibrary(cardsPlayer, game, source, onTop);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while (!permanents.isEmpty()) {
|
while (!permanents.isEmpty()) {
|
||||||
|
|
@ -125,7 +125,7 @@ public class PutOnLibraryTargetEffect extends OneShotEffect {
|
||||||
iterator.remove();
|
iterator.remove();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
owner.putCardsOnTopOfLibrary(cardsPlayer, game, source, true);
|
owner.putCardsOnTopOfLibrary(cardsPlayer, game, source, onTop);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue