diff --git a/spyglass.json b/spyglass.json index 451a8cd..e2389f1 100644 --- a/spyglass.json +++ b/spyglass.json @@ -1,5 +1,5 @@ { "env": { - "gameVersion": "1.21.6" + "gameVersion": "1.21.9" } } diff --git a/src/plugins/output.py b/src/plugins/output.py index ac13507..ab094d0 100644 --- a/src/plugins/output.py +++ b/src/plugins/output.py @@ -3,12 +3,12 @@ from bolt import Module import os -VERSION = os.getenv("VERSION", "1.21.6") -MAJOR_VERSION = "1_21_6-1_21_8" +VERSION = os.getenv("VERSION", "1.21.9") +MAJOR_VERSION = "1_21_6-1_21_9" FORMAT = 80 -FORMATS = [80,81] +FORMATS = [80,81,82] RP_FORMAT = 63 -RP_FORMATS = [63,64] +RP_FORMATS = [63,64,65] def beet_default(ctx: Context): """Saves the datapack to the ./out folder.""" diff --git a/src/plugins/worldgen/compat.py b/src/plugins/worldgen/compat.py index 0fc564c..c263fac 100644 --- a/src/plugins/worldgen/compat.py +++ b/src/plugins/worldgen/compat.py @@ -8,8 +8,8 @@ from typing import Any import os -VERSION = os.getenv('VERSION', '1.21.6') -MAJOR_VERSION = "1_21_6-1_21_8" +VERSION = os.getenv('VERSION', '1.21.9') +MAJOR_VERSION = "1_21_6-1_21_9" def terralith(ctx: Context): url = "https://cdn.modrinth.com/data/8oi3bsk5/versions/4LsxILTH/Terralith_1.21_v2.5.5.zip" diff --git a/src/plugins/worldgen/get_empty_biomes.py b/src/plugins/worldgen/get_empty_biomes.py index 46cbfe1..9078027 100644 --- a/src/plugins/worldgen/get_empty_biomes.py +++ b/src/plugins/worldgen/get_empty_biomes.py @@ -4,8 +4,8 @@ import os import requests -VERSION = os.getenv('VERSION', '1.21.6') -MAJOR_VERSION = "1_21_6-1_21_8" +VERSION = os.getenv('VERSION', '1.21.9') +MAJOR_VERSION = "1_21_6-1_21_9" NAME = "skyvoid_worldgen" # name of the module DIR = f"worldgen/{NAME}/data" TEMP_PATH = f"worldgen/{NAME}/temp_files" diff --git a/src/plugins/worldgen/get_empty_structures.py b/src/plugins/worldgen/get_empty_structures.py index 90e859a..375ce24 100644 --- a/src/plugins/worldgen/get_empty_structures.py +++ b/src/plugins/worldgen/get_empty_structures.py @@ -4,7 +4,7 @@ from nbtlib import * # type: ignore import os -VERSION = os.getenv('VERSION', '1.21.6') +VERSION = os.getenv('VERSION', '1.21.9') NAME = "skyvoid_worldgen" # name of the module DIR = f"worldgen/{NAME}/data" TEMP_PATH = f"worldgen/{NAME}/temp_files"