From 85063859e06edd37c5d1b76c7dc0041f21f91e3d Mon Sep 17 00:00:00 2001 From: tritoch Date: Fri, 23 Sep 2016 09:23:47 -0500 Subject: [PATCH] =?UTF-8?q?Pending=20mtgjson/gatherer=20=C3=86-->Ae=20conv?= =?UTF-8?q?ersion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is to prepare for when mtgjson converts all Æ cards to 'Ae'. Formerly it was 'AE'. --- common/decklist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/decklist.cpp b/common/decklist.cpp index fde4ef30..e23fcc3f 100644 --- a/common/decklist.cpp +++ b/common/decklist.cpp @@ -578,7 +578,7 @@ bool DeckList::loadFromStream_Plain(QTextStream &in) rx.setPattern("’"); cardName.replace(rx, "'"); rx.setPattern("Æ"); - cardName.replace(rx, "AE"); + cardName.replace(rx, "Ae"); rx.setPattern("\\s*[|/]{1,2}\\s*"); cardName.replace(rx, " // ");