From 56c1a7f8b49ee857e8f7e61d1bf291c5e0699704 Mon Sep 17 00:00:00 2001 From: Zach H Date: Thu, 21 May 2015 09:45:16 -0400 Subject: [PATCH] hideaway update --- oracle/src/oracleimporter.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/oracle/src/oracleimporter.cpp b/oracle/src/oracleimporter.cpp index bca5c92a..84e742a8 100644 --- a/oracle/src/oracleimporter.cpp +++ b/oracle/src/oracleimporter.cpp @@ -95,8 +95,7 @@ CardInfo *OracleImporter::addCard(const QString &setName, if (cardTextRows[i].contains("{T}") && cardTextRows[i].contains("to your mana pool")) mArtifact = true; - bool cipt = cardText.contains(cardName + " enters the battlefield tapped") && - !cardText.contains(cardName + " enters the battlefield tapped unless"); + bool cipt = cardText.contains("Hideaway") || (cardText.contains(cardName + " enters the battlefield tapped") && !cardText.contains(cardName + " enters the battlefield tapped unless")); card = new CardInfo(this, cardName, isToken, cardCost, cmc, cardType, cardPT, cardText, colors, cardLoyalty, cipt); int tableRow = 1;