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

Fix when proliferate happens ()

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