Skip to content

Commit

Permalink
Fix old intermediary url
Browse files Browse the repository at this point in the history
  • Loading branch information
thecatcore committed Feb 11, 2024
1 parent 7677892 commit da0d9f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
multi_filament_version=0.2.6
multi_filament_version=0.2.7

asm_version=9.5
unpick_version=2.3.0
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ public String getIntermediaryURL(String mcVersion) {
private String getIntermediaryFolder() {
switch (revision) {
case 1:
return "legacy/";
return "/legacy";
case 0:
return "legacy_old/";
return "/legacy_old";
default:
return "";
}
Expand Down

0 comments on commit da0d9f4

Please sign in to comment.