diff --git a/oracle/src/oracleimporter.cpp b/oracle/src/oracleimporter.cpp index d969b6dc..1ae718c2 100644 --- a/oracle/src/oracleimporter.cpp +++ b/oracle/src/oracleimporter.cpp @@ -334,6 +334,9 @@ int OracleImporter::importCardsFromSet(const CardSetPtr ¤tSet, power = getStringPropertyFromMap(card, "power"); toughness = getStringPropertyFromMap(card, "toughness"); + if (power.isEmpty() || toughness.isEmpty()){ + ptSeparator = ""; + } if (!(power.isEmpty() && toughness.isEmpty())) { properties.insert("pt", power + ptSeparator + toughness); }