From 286391738c18d20b2bc68ed35c09028e73eb40e3 Mon Sep 17 00:00:00 2001 From: Rafael Damasceno Date: Tue, 28 May 2019 15:56:13 +0100 Subject: [PATCH] Remove BFZ and OGW art variations as they're fixed upstream --- .../mage/plugins/card/dl/sources/ScryfallImageSource.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/ScryfallImageSource.java b/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/ScryfallImageSource.java index f7a384ee07..3ba728a09b 100644 --- a/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/ScryfallImageSource.java +++ b/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/ScryfallImageSource.java @@ -84,8 +84,7 @@ public enum ScryfallImageSource implements CardImageSource { // art variation cards // ARN and POR use † notation // PLS uses ★ notation - // BFZ and OGW use a notation - if (baseUrl == null && card.getUsesVariousArt() && card.getSet().matches("ARN|POR|PLS|BFZ|OGW")) { + if (baseUrl == null && card.getUsesVariousArt() && card.getSet().matches("ARN|POR|PLS")) { String scryfallCollectorId = card.getCollectorIdAsInt().toString(); if (card.getCollectorId().endsWith("b")) { @@ -93,8 +92,6 @@ public enum ScryfallImageSource implements CardImageSource { scryfallCollectorId += "†"; } else if (card.getSet().matches("PLS")) { scryfallCollectorId += "★"; - } else if (card.getSet().matches("BFZ|OGW")) { - scryfallCollectorId += "a"; } }