Skip to content

Commit

Permalink
Revert unrelated change not to do with DuelCommander
Browse files Browse the repository at this point in the history
  • Loading branch information
misha-colbourne committed Nov 20, 2024
1 parent dd669d0 commit 13e1550
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions forge-core/src/main/java/forge/util/ImageUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ public static String getScryfallDownloadUrl(PaperCard cp, String face, String se
if (cp.getRules().getOtherPart() != null) {
faceParam = (face.equals("back") ? "&face=back" : "&face=front");
}
return String.format("%s/%s%s?format=image&version=%s%s", editionCode, cardCollectorNumber,
!langCode.isEmpty() ? "/" + langCode : "", versionParam, faceParam);
return String.format("%s/%s/%s?format=image&version=%s%s", editionCode, cardCollectorNumber,
langCode, versionParam, faceParam);
}

public static String toMWSFilename(String in) {
Expand Down

0 comments on commit 13e1550

Please sign in to comment.