mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Added putOntoBattlefield handling for cards played from exile zone (Ornate Kanzashi).
This commit is contained in:
parent
a3e4e72190
commit
e706a77211
1 changed files with 4 additions and 0 deletions
|
@ -385,6 +385,10 @@ public abstract class CardImpl<T extends CardImpl<T>> extends MageObjectImpl<T>
|
|||
case LIBRARY:
|
||||
removed = game.getPlayer(ownerId).removeFromLibrary(this, game);
|
||||
break;
|
||||
case EXILED:
|
||||
game.getExile().removeCard(this, game);
|
||||
removed = true;
|
||||
break;
|
||||
default:
|
||||
//logger.warning("putOntoBattlefield, not fully implemented: from="+fromZone);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue