Merge branch 'main' into tunc-combat-logic

This commit is contained in:
Scipio Wright
2024-07-17 19:42:26 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ from pathlib import Path
# This is a bit jank. We need cx-Freeze to be able to run anything from this script, so install it
try:
requirement = 'cx-Freeze==7.0.0'
requirement = 'cx-Freeze==7.2.0'
import pkg_resources
try:
pkg_resources.require(requirement)

View File

@@ -44,7 +44,7 @@ class SubnauticaWorld(World):
location_name_to_id = all_locations
options_dataclass = options.SubnauticaOptions
options: options.SubnauticaOptions
required_client_version = (0, 4, 1)
required_client_version = (0, 5, 0)
creatures_to_scan: List[str]