Skip to content

Commit

Permalink
Update AetherhubExport.java
Browse files Browse the repository at this point in the history
  • Loading branch information
nicho92 authored Dec 19, 2024
1 parent a29e9ca commit 02a383f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/org/magic/api/exports/impl/AetherhubExport.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ public List<MTGCardStock> importStock(String content) throws IOException {
mcs.setQte(Integer.parseInt(m.group(1)));
mcs.setLanguage(m.group(14));
mcs.setFoil(m.group(15).equals("1"));
mcs.setSigned(m.group(16).equals("1"));
mcs.setAltered(m.group(18).equals("1"));
mcs.setCondition(aliases.getReversedConditionFor(this, m.group(13), EnumCondition.NEAR_MINT));
l.add(mcs);
} catch (IOException e) {
Expand Down

0 comments on commit 02a383f

Please sign in to comment.