From e1ce158fa2679ae5861f014e00c5bd2f7744f3e5 Mon Sep 17 00:00:00 2001 From: StalledStorm <112809386+StalledStorm@users.noreply.github.com> Date: Fri, 6 Feb 2026 15:25:34 +0000 Subject: [PATCH] Swap default values to match what is reflected in game, instead of the incorrect ASM labels --- src/mars_patcher/mf/auto_generated_types.py | 4 ++-- src/mars_patcher/mf/data/schema.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mars_patcher/mf/auto_generated_types.py b/src/mars_patcher/mf/auto_generated_types.py index dffca76..f3fdbdb 100644 --- a/src/mars_patcher/mf/auto_generated_types.py +++ b/src/mars_patcher/mf/auto_generated_types.py @@ -523,10 +523,10 @@ class MarsschemamfEnvironmentaldamage(typ.TypedDict): Heat: Typeu8 = 6 """The amount of damage per second taken while in a heated environment.""" - Cold: Typeu8 = 6 + Cold: Typeu8 = 15 """The amount of damage per second taken while in a cold environment.""" - Subzero: Typeu8 = 15 + Subzero: Typeu8 = 6 """The amount of damage per second taken while in Sub-Zero Containment. Currently unused, will always use Cold.""" diff --git a/src/mars_patcher/mf/data/schema.json b/src/mars_patcher/mf/data/schema.json index 8a27163..843d1a0 100644 --- a/src/mars_patcher/mf/data/schema.json +++ b/src/mars_patcher/mf/data/schema.json @@ -607,12 +607,12 @@ "Cold": { "$ref": "#/$defs/TypeU8", "description": "The amount of damage per second taken while in a cold environment.", - "default": 6 + "default": 15 }, "Subzero": { "$ref": "#/$defs/TypeU8", "description": "The amount of damage per second taken while in Sub-Zero Containment. Currently unused, will always use Cold.", - "default": 15 + "default": 6 } }, "required": ["Lava", "Acid", "Heat", "Cold", "Subzero"]