forked from External/mage
Fix Adventures exiling themselves before applying their effects (#10793)
* Rework adventures to exiles themself after applying other effects * fix duelist * finalize all adventures * apply review * add card name to error * fix remaining adventures * finalize the last adventures.
This commit is contained in:
parent
3ed0dd4f84
commit
fe165f1fd0
108 changed files with 322 additions and 18 deletions
|
|
@ -26,6 +26,10 @@ public abstract class AdventureCard extends CardImpl {
|
|||
this.spellCard = new AdventureCardSpellImpl(ownerId, setInfo, adventureName, typesSpell, costsSpell, this);
|
||||
}
|
||||
|
||||
public void finalizeAdventure() {
|
||||
spellCard.finalizeAdventure();
|
||||
}
|
||||
|
||||
public AdventureCard(AdventureCard card) {
|
||||
super(card);
|
||||
this.spellCard = card.getSpellCard().copy();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue