Skip to content

Commit

Permalink
update to 1.21.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobsjo committed Oct 23, 2024
1 parent 86f0c3d commit 9ed41d6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"settings.mc_version.mc1_20_2": "Minecraft 1.20.2",
"settings.mc_version.mc1_20_4": "Minecraft 1.20.4",
"settings.mc_version.mc1_20_6": "Minecraft 1.20.6",
"settings.mc_version.mc1_21": "Minecraft 1.21",
"settings.mc_version.mc1_21_2": "Minecraft 1.21.2",
"settings.mc_version.mc1_21_1": "Minecraft 1.21.1",
"settings.mc_version.mc1_21_3": "Minecraft 1.21.3",
"settings.dev_mode.label": "Developer Mode:",
"settings.dev_mode.aria-label": "Developer Mode",
"settings.world_preset.label": "World Preset:",
Expand Down
3 changes: 2 additions & 1 deletion scripts/createVanillaZips.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,5 @@ def emptyTmp():
main('tags/1.20.4-', "update_1_21", "_1_20_4")
main('tags/1.20.6-', "update_1_21", "_1_20_6")
main('tags/1.21-', "", "_1_21")
main('heads/', "winter_drop", "_1_21_2")
main('tags/1.21.2-', "winter_drop", "_1_21_3")
# main('heads/', "winter_drop", "_1_21_4")
2 changes: 1 addition & 1 deletion src/stores/useSettingsStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const useSettingsStore = defineStore('settings', () => {
const collator = computed(() => new Intl.Collator(i18n.locale.value.replace('_','-')))

const dev_mode = ref(false)
const mc_version = ref('1_21')
const mc_version = ref('1_21_3')
const world_preset = ref(Identifier.create("normal"))
const dimension = ref(Identifier.create("overworld"))
const seed = ref(BigInt(0))
Expand Down
8 changes: 4 additions & 4 deletions src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export const versionMetadata: { [version: string]: Metadata } = {
},
spawnAlgorithm: SpawnTarget.Algorithm.LEGACY_ZERO_BIASED
},
"1_21": {
"1_21_1": {
vanillaDatapack: "1_21",
experimentalDatapacks: [],
datapackFormat: 48,
Expand All @@ -155,11 +155,11 @@ export const versionMetadata: { [version: string]: Metadata } = {
},
spawnAlgorithm: SpawnTarget.Algorithm.LEGACY_ZERO_BIASED
},
"1_21_2": {
vanillaDatapack: "1_21_2",
"1_21_3": {
vanillaDatapack: "1_21_3",
experimentalDatapacks: [
{
"url": "1_21_2_winter_drop",
"url": "1_21_3_winter_drop",
"translation_key": "dropdown.add.built_in.winter_drop"
}
],
Expand Down

0 comments on commit 9ed41d6

Please sign in to comment.