mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
* Nissa's Chosen - Added game log message about the move of Nissa's Chosen to library.
This commit is contained in:
parent
38d5a50b23
commit
da65404436
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue