From 94be6e147b461a9775dbb43cd520e9bd1cbdb5e1 Mon Sep 17 00:00:00 2001 From: DaanV2 Date: Sat, 6 Jan 2024 22:44:01 +0100 Subject: [PATCH] Fixing variable_max_auto_step --- .../format/components/variable_max_auto_step.json | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/source/behavior/entities/format/components/variable_max_auto_step.json b/source/behavior/entities/format/components/variable_max_auto_step.json index 6146e9e0..7ed31a29 100644 --- a/source/behavior/entities/format/components/variable_max_auto_step.json +++ b/source/behavior/entities/format/components/variable_max_auto_step.json @@ -7,13 +7,19 @@ "required": [], "properties": { "base_value": { - "title": "base value", + "title": "Base Value", "type": "number", "default": 0.5625, "description": "The maximum auto step height when on any other block." }, + "controlled_value": { + "title": "Controlled Value", + "type": "number", + "default": 0.5625, + "description": "The maximum auto step height when on any other block and controlled by the player." + }, "jump_prevented_value": { - "title": "jump prevented value", + "title": "Jump Prevented Value", "type": "number", "default": 0.5625, "description": "The maximum auto step height when on a block that prevents jumping." @@ -21,7 +27,9 @@ }, "examples": [ { - "value": 0.0 + "base_value": 0.5625, + "controlled_value": 0.5625, + "jump_prevented_value": 0.5625 } ] }