forked from External/mage
* Stormchaser Chimera - Fixed that the boost from the activated ability did not work.
This commit is contained in:
parent
60838ec386
commit
176a77ff44
1 changed files with 3 additions and 3 deletions
|
|
@ -103,12 +103,12 @@ class StormchaserChimeraEffect extends OneShotEffect<StormchaserChimeraEffect> {
|
|||
}
|
||||
if (player.getLibrary().size() > 0) {
|
||||
Card card = player.getLibrary().getFromTop(game);
|
||||
Cards cards = new CardsImpl();
|
||||
cards.add(card);
|
||||
Cards cards = new CardsImpl(card);
|
||||
player.revealCards(sourcePermanent.getName(), cards, game);
|
||||
|
||||
if (card != null) {
|
||||
return new BoostSourceEffect(card.getManaCost().convertedManaCost(), 0, Duration.EndOfTurn).apply(game, source);
|
||||
game.addEffect(new BoostSourceEffect(card.getManaCost().convertedManaCost(), 0, Duration.EndOfTurn), source);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue