diff --git a/oracle/src/oracleimporter.cpp b/oracle/src/oracleimporter.cpp index 4530470c..2476f345 100644 --- a/oracle/src/oracleimporter.cpp +++ b/oracle/src/oracleimporter.cpp @@ -123,8 +123,9 @@ CardInfoPtr OracleImporter::addCard(QString name, // DETECT CARD POSITIONING INFO // cards that enter the field tapped - bool cipt = text.contains("Hideaway") || (text.contains(name + " enters the battlefield tapped") && - !text.contains(name + " enters the battlefield tapped unless")); + bool cipt = text.contains("Hideaway") || text.contains(" it enters the battlefield tapped") || + (text.contains(name + " enters the battlefield tapped") && + !text.contains(name + " enters the battlefield tapped unless")); // detect mana generator artifacts QStringList cardTextRows = text.split("\n");