From 90f187e885b2511a6e05076ebde786b3c05b80b3 Mon Sep 17 00:00:00 2001 From: ebbit1q Date: Sun, 2 Oct 2022 19:23:35 +0200 Subject: [PATCH] fix 4679 (#4680) --- oracle/src/oracleimporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oracle/src/oracleimporter.cpp b/oracle/src/oracleimporter.cpp index 9ee88baa..d969b6dc 100644 --- a/oracle/src/oracleimporter.cpp +++ b/oracle/src/oracleimporter.cpp @@ -141,7 +141,7 @@ CardInfoPtr OracleImporter::addCard(QString name, // DETECT CARD POSITIONING INFO // cards that enter the field tapped - bool cipt = text.contains("Hideaway") || text.contains(" it enters the battlefield tapped") || + bool cipt = text.contains(" it enters the battlefield tapped") || (text.contains(name + " enters the battlefield tapped") && !text.contains(name + " enters the battlefield tapped unless"));