forked from External/mage
Add documentation to Cards and CardsImpl (#9019)
* Added minor documentation and TODO questions * Fixed typo * Address one set of comments * merge fix * remove commented code --------- Co-authored-by: xenohedron <xenohedron@users.noreply.github.com>
This commit is contained in:
parent
af2d336045
commit
6b5d4abb69
58 changed files with 124 additions and 112 deletions
|
|
@ -128,7 +128,7 @@ public class RevealAndSeparatePilesEffect extends OneShotEffect {
|
|||
|
||||
game.informPlayers("Pile 1, going to " + pile1Zone + ": " + (pile1.isEmpty() ? " (none)" : pile1.stream().map(MageObject::getName).collect(Collectors.joining(", "))));
|
||||
cards.clear();
|
||||
cards.addAll(pile1);
|
||||
cards.addAllCards(pile1);
|
||||
if (pile1Zone == Zone.LIBRARY) {
|
||||
controller.putCardsOnBottomOfLibrary(cards, game, source, anyOrder);
|
||||
} else {
|
||||
|
|
@ -137,7 +137,7 @@ public class RevealAndSeparatePilesEffect extends OneShotEffect {
|
|||
|
||||
game.informPlayers("Pile 2, going to " + pile2Zone + ": " + (pile2.isEmpty() ? " (none)" : pile2.stream().map(MageObject::getName).collect(Collectors.joining(", "))));
|
||||
cards.clear();
|
||||
cards.addAll(pile2);
|
||||
cards.addAllCards(pile2);
|
||||
if (pile2Zone == Zone.LIBRARY) {
|
||||
controller.putCardsOnBottomOfLibrary(cards, game, source, anyOrder);
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue