* Sylvan Library - Fixed that the order of the cards put back to library was random.

This commit is contained in:
LevelX2 2018-10-25 14:32:35 +02:00
parent cdcbf0aaa2
commit 7fef8113c0

View file

@ -1,4 +1,3 @@
package mage.cards.s; package mage.cards.s;
import java.util.HashMap; import java.util.HashMap;
@ -106,7 +105,7 @@ class SylvanLibraryEffect extends OneShotEffect {
} }
} }
} }
controller.putCardsOnTopOfLibrary(cardsPutBack, game, source, false); controller.putCardsOnTopOfLibrary(cardsPutBack, game, source, true);
} }
} }
return true; return true;