Skip to content

Commit

Permalink
Fix JAM detection
Browse files Browse the repository at this point in the history
  • Loading branch information
NebelNidas committed Dec 8, 2023
1 parent acf4625 commit 86c394f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/net/fabricmc/mappingio/MappingReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,13 @@ public static MappingFormat detectFormat(Reader reader) throws IOException {
return MappingFormat.ENIGMA_FILE;
case "PK:":
case "CL:":
case "MD:":
case "FD:":
case "MD:":
return detectSrgOrXsrg(br);
case "CL ":
case "FD ":
case "MD ":
case "MP ":
return MappingFormat.JAM_FILE;
}

Expand Down

0 comments on commit 86c394f

Please sign in to comment.