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 } ] }