Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spyglass.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"env": {
"gameVersion": "1.21.6"
"gameVersion": "1.21.9"
}
}
8 changes: 4 additions & 4 deletions src/plugins/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/worldgen/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/worldgen/get_empty_biomes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/worldgen/get_empty_structures.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down