Skip to content

Commit

Permalink
#11
Browse files Browse the repository at this point in the history
  • Loading branch information
XDPXI committed Jul 17, 2024
1 parent 1d84bee commit 04a2535
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion installer/ZtrolixLibsDownloader.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,11 @@ private static String getDownloadUrl(String loader, String version) {
switch (loader) {
case "Fabric":
case "Quilt":
return FABRIC_QUILT_URL;
if (version.equals("1.21 EXPERIMENTAL")) {
return FABRIC_QUILT_21_URL;
} else {
return FABRIC_QUILT_URL;
}
case "Spigot":
return SPIGOT_URL;
case "NeoForge":
Expand Down

0 comments on commit 04a2535

Please sign in to comment.