forked from External/mage
Fix behavior for Garruk's Horde, Melek, W6.
This commit is contained in:
parent
19ca9f555c
commit
cd890d329a
5 changed files with 192 additions and 35 deletions
|
|
@ -21,7 +21,9 @@ public abstract class AdventureCard extends CardImpl {
|
|||
public AdventureCard(UUID ownerId, CardSetInfo setInfo, CardType[] types, CardType[] typesSpell, String costs, String adventureName, String costsSpell) {
|
||||
super(ownerId, setInfo, types, costs);
|
||||
spellCard = new AdventureCardSpellImpl(ownerId, setInfo, adventureName, typesSpell, costsSpell, this);
|
||||
this.addAbility(spellCard.getSpellAbility());
|
||||
Ability adventureAbility = spellCard.getSpellAbility();
|
||||
this.addAbility(adventureAbility);
|
||||
adventureAbility.setSourceId(spellCard.getId());
|
||||
}
|
||||
|
||||
public AdventureCard(AdventureCard card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue