mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 14:02:05 -08: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…
Add table
Add a link
Reference in a new issue