Remove BFZ and OGW art variations as they're fixed upstream

This commit is contained in:
Rafael Damasceno 2019-05-28 15:56:13 +01:00
parent 6dbaa9f7cc
commit 286391738c

View file

@ -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";
}
}