mirror of
https://github.com/correl/mage.git
synced 2025-04-13 17:00:09 -09:00
* Adventure cards - added player name to adventure exile window;
This commit is contained in:
parent
195bca0aa5
commit
d3b1be2f75
1 changed files with 2 additions and 2 deletions
|
@ -53,10 +53,10 @@ public class ExileAdventureSpellEffect extends OneShotEffect implements MageSing
|
|||
Card spellCard = spell.getCard();
|
||||
if (spellCard instanceof AdventureCardSpell) {
|
||||
UUID exileId = adventureExileId(controller.getId(), game);
|
||||
game.getExile().createZone(exileId, "On an Adventure");
|
||||
game.getExile().createZone(exileId, "On an Adventure from " + controller.getName());
|
||||
AdventureCardSpell adventureSpellCard = (AdventureCardSpell) spellCard;
|
||||
Card parentCard = adventureSpellCard.getParentCard();
|
||||
if (controller.moveCardsToExile(parentCard, source, game, true, exileId, "On an Adventure")) {
|
||||
if (controller.moveCardsToExile(parentCard, source, game, true, exileId, "On an Adventure from " + controller.getName())) {
|
||||
ContinuousEffect effect = new AdventureCastFromExileEffect();
|
||||
effect.setTargetPointer(new FixedTarget(parentCard.getId(), game));
|
||||
game.addEffect(effect, source);
|
||||
|
|
Loading…
Add table
Reference in a new issue