Skip to content

Commit

Permalink
update to 24w33a
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobsjo committed Aug 15, 2024
1 parent b67403b commit 01a7715
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion build_scripts/repackMinecraftAssets.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ def createZips(version, zip_version):
extractJar("24w14potato", version_manifest)
extractJar("1.20.6", version_manifest)
extractJar("1.21", version_manifest)
extractJar("snapshot", version_manifest)

createZips("1.16.5", "1_16")
createZips("1.17.1", "1_17")
Expand All @@ -102,4 +103,5 @@ def createZips(version, zip_version):
createZips("1.20.4", "1_20_4")
createZips("24w14potato", "24w14potato")
createZips("1.20.6", "1_20_6")
createZips("1.21", "1_21")
createZips("1.21", "1_21")
createZips("snapshot", "1_21_2")
8 changes: 5 additions & 3 deletions src/Util/Constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export namespace Constants {
export const LEGACY_STRUCTURE_FEATURE_MINECRAFT_VERSIONS: string[] = ["1_16", "1_17", "1_18"]
export const LEGACY_STRUCTURES_MINECRAFT_VERSIONS: string[] = ["1_16", "1_17", "1_18", "1_19", "1_20", "1_20_4", "24w14potato", "1_20_6"]

export const MINECRAFT_VERSIONS: string[] = ["1_16", "1_17", "1_18", "1_19", "1_20", "1_20_4", "24w14potato", "1_20_6", "1_21"]
export const MINECRAFT_VERSIONS: string[] = ["1_16", "1_17", "1_18", "1_19", "1_20", "1_20_4", "24w14potato", "1_20_6", "1_21", "1_21_2"]

export const MINECRAFT_ASSET_VERSIONS: {[key: string]: string | undefined} = {
"1_16": "1.16.5",
Expand All @@ -14,7 +14,8 @@ export namespace Constants {
"1_20_4": "1.20.4",
"24w14potato": "24w14potato",
"1_20_6": "1.20.6",
"1_21": "1.21"
"1_21": "1.21",
"1_21_2": "24w33a"
}

export const HIDDEN_VERSIONS = ["24w14potato"]
Expand All @@ -28,6 +29,7 @@ export namespace Constants {
"1_20_4": 26,
"24w14potato": 36,
"1_20_6": 41,
"1_21": 48
"1_21": 48,
"1_21_2": 49
}
}

0 comments on commit 01a7715

Please sign in to comment.