mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-01-21 17:13:22 -08:00
fix for issue #17: oracle: convert smart quotes to normal quotes in card names
This commit is contained in:
@@ -92,7 +92,8 @@ CardInfo *OracleImporter::addCard(const QString &setName,
|
||||
if (cardName.contains("XX"))
|
||||
cardName.remove("XX");
|
||||
cardName = cardName.replace("Æ", "AE");
|
||||
|
||||
cardName = cardName.replace("’", "'");
|
||||
|
||||
CardInfo *card;
|
||||
if (cardHash.contains(cardName)) {
|
||||
card = cardHash.value(cardName);
|
||||
|
||||
Reference in New Issue
Block a user