* Nissa's Chosen - Added game log message about the move of Nissa's Chosen to library.

This commit is contained in:
LevelX2 2013-10-04 13:45:52 +02:00
parent 38d5a50b23
commit da65404436

View file

@ -99,7 +99,11 @@ class NissasChosenEffect extends ReplacementEffectImpl<NissasChosenEffect> {
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
Permanent permanent = ((ZoneChangeEvent) event).getTarget();
if (permanent != null) {
return permanent.moveToZone(Zone.LIBRARY, source.getSourceId(), game, false);
if(permanent.moveToZone(Zone.LIBRARY, source.getSourceId(), game, false)) {
game.informPlayers(new StringBuilder(permanent.getName()).append(" was put on the bottom of its owner's library").toString());
return true;
}
}
return false;
}