1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 09:18:59 -09:00

[ONE] fix Contagious Vorrac

This commit is contained in:
theelk801 2023-04-25 17:52:23 -04:00
parent c3ed884c4c
commit 8862e9c58e

View file

@ -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);
}
}