mirror of
https://github.com/correl/mage.git
synced 2024-12-29 03:00:15 +00:00
Fix when proliferate happens (#10276)
This commit is contained in:
parent
8862e9c58e
commit
b3d0f51263
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue