Merge pull request #1091 from ZeldaZach/oracle_hideaway
This commit is contained in:
commit
5975184d67
1 changed files with 1 additions and 2 deletions
|
@ -95,8 +95,7 @@ CardInfo *OracleImporter::addCard(const QString &setName,
|
||||||
if (cardTextRows[i].contains("{T}") && cardTextRows[i].contains("to your mana pool"))
|
if (cardTextRows[i].contains("{T}") && cardTextRows[i].contains("to your mana pool"))
|
||||||
mArtifact = true;
|
mArtifact = true;
|
||||||
|
|
||||||
bool cipt = cardText.contains(cardName + " enters the battlefield tapped") &&
|
bool cipt = cardText.contains("Hideaway") || (cardText.contains(cardName + " enters the battlefield tapped") && !cardText.contains(cardName + " enters the battlefield tapped unless"));
|
||||||
!cardText.contains(cardName + " enters the battlefield tapped unless");
|
|
||||||
|
|
||||||
card = new CardInfo(this, cardName, isToken, cardCost, cmc, cardType, cardPT, cardText, colors, cardLoyalty, cipt);
|
card = new CardInfo(this, cardName, isToken, cardCost, cmc, cardType, cardPT, cardText, colors, cardLoyalty, cipt);
|
||||||
int tableRow = 1;
|
int tableRow = 1;
|
||||||
|
|
Loading…
Reference in a new issue