Fix when proliferate happens (#10276)

This commit is contained in:
xenohedron 2023-04-25 19:07:37 -04:00 committed by GitHub
parent 8862e9c58e
commit b3d0f51263
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -81,6 +81,6 @@ class ContagiousVorracEffect extends OneShotEffect {
}
cards.retainZone(Zone.LIBRARY, game);
player.putCardsOnBottomOfLibrary(cards, game, source, false);
return card == null || new ProliferateEffect().apply(game, source);
return card != null || new ProliferateEffect().apply(game, source);
}
}