* Necropotence - Fixed that the name of the exiled cards was shown in the log.

This commit is contained in:
LevelX2 2015-04-09 14:53:24 +02:00
parent 80f06a22c6
commit b737cbfe24
144 changed files with 198 additions and 194 deletions

View file

@ -215,7 +215,7 @@ class ChandraPyromasterEffect2 extends OneShotEffect {
Library library = controller.getLibrary();
Card card = library.removeFromTop(game);
if (card != null) {
controller.moveCardToExileWithInfo(card, source.getSourceId(), "Chandra Pyromaster <this card may be played the turn it was exiled>", source.getSourceId(), game, Zone.LIBRARY);
controller.moveCardToExileWithInfo(card, source.getSourceId(), "Chandra Pyromaster <this card may be played the turn it was exiled>", source.getSourceId(), game, Zone.LIBRARY, true);
ContinuousEffect effect = new ChandraPyromasterCastFromExileEffect();
effect.setTargetPointer(new FixedTarget(card.getId()));
game.addEffect(effect, source);