mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-01-05 09:39:22 -08:00
make sure no //es are added to maintypes (#4017)
This commit is contained in:
@@ -392,7 +392,7 @@ int OracleImporter::importCardsFromSet(CardSetPtr currentSet, const QList<QVaria
|
||||
if (originalPropertyValue != thisCardPropertyValue) {
|
||||
if (prop == "colors") {
|
||||
properties.insert(prop, originalPropertyValue + thisCardPropertyValue);
|
||||
} else if (prop == "maintype" && layout == "adventure") {
|
||||
} else if (prop == "maintype") { // don't create maintypes with //es in them
|
||||
properties.insert(prop, originalPropertyValue);
|
||||
} else {
|
||||
properties.insert(prop,
|
||||
|
||||
Reference in New Issue
Block a user