This commit is contained in:
Anthony Calosa
2017-03-11 07:57:54 +08:00
parent d9bd6bbb32
commit 5f2fbb370c
2 changed files with 3 additions and 3 deletions

View File

@@ -38438,7 +38438,7 @@ toughness=3
[card] [card]
name=Faerie Macabre name=Faerie Macabre
abilities=flying abilities=flying
autohand={S}:target(other *<upto:2>|graveyard) moveTo(exile) autohand={discard}:target(<upto:2>other *|graveyard) moveTo(exile)
text=Flying -- Discard Faerie Macabre: Exile up to two target cards from graveyards. text=Flying -- Discard Faerie Macabre: Exile up to two target cards from graveyards.
mana={1}{B}{B} mana={1}{B}{B}
type=Creature type=Creature

View File

@@ -569,13 +569,13 @@ MTGGameZone::~MTGGameZone()
//cause crashes for generated cards using castcard named card...??? test fix for now //cause crashes for generated cards using castcard named card...??? test fix for now
if(cards[i]->previous) if(cards[i]->previous)
{ {
cards[i]->previous = NULL;
delete cards[i]->previous; delete cards[i]->previous;
cards[i]->previous = NULL;
} }
if(cards[i]) if(cards[i])
{ {
cards[i] = NULL;
delete cards[i]; delete cards[i];
cards[i] = NULL;
} }
} }
cards.clear(); cards.clear();