diff --git a/Mage.Sets/src/mage/cards/c/ContagiousVorrac.java b/Mage.Sets/src/mage/cards/c/ContagiousVorrac.java index d373bd49b1..cd9ed25423 100644 --- a/Mage.Sets/src/mage/cards/c/ContagiousVorrac.java +++ b/Mage.Sets/src/mage/cards/c/ContagiousVorrac.java @@ -80,7 +80,7 @@ class ContagiousVorracEffect extends OneShotEffect { player.moveCards(card, Zone.HAND, source, game); } cards.retainZone(Zone.LIBRARY, game); - player.putCardsOnBottomOfLibrary(card, game, source, false); + player.putCardsOnBottomOfLibrary(cards, game, source, false); return card == null || new ProliferateEffect().apply(game, source); } }