Skip to content

Commit

Permalink
Remove minecraft- from slugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
shartte committed Oct 29, 2023
1 parent 3e6b8e2 commit a933dbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/download_data.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async function downloadVersion(versionInfo) {
const { format, generated, modVersion, gameVersion, guideDataPath } =
versionDetails;

const versionSlug = development ? "development" : "minecraft-" + gameVersion;
const versionSlug = development ? "development" : gameVersion;

const guideDataUrl = new URL(guideDataPath, url);
console.info("Downloading %s", guideDataUrl);
Expand Down

0 comments on commit a933dbe

Please sign in to comment.