From 7e909ef713db2e51989ed2881051bfdd9bf78352 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:57:03 +0100 Subject: [PATCH] Update stay_near_noteblock.json corrected title, capitalised titles & corrected default values --- .../format/behaviors/stay_near_noteblock.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/source/behavior/entities/format/behaviors/stay_near_noteblock.json b/source/behavior/entities/format/behaviors/stay_near_noteblock.json index 939bfb08..d630db6e 100644 --- a/source/behavior/entities/format/behaviors/stay_near_noteblock.json +++ b/source/behavior/entities/format/behaviors/stay_near_noteblock.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.stay_near_noteblock", "type": "object", - "title": "Barter", + "title": "Stay Near Noteblock", "description": "[EXPERIMENTAL BEHAVIOR] The entity will attempt to toss the items from its inventory to a nearby recently played noteblock.", "additionalProperties": false, "properties": { @@ -9,27 +9,27 @@ "$ref": "types/priority.json" }, "listen_time": { - "title": "listen time", + "title": "Listen Time", "type": "integer", "default": 0.0, "description": "Sets the time an entity should stay near a noteblock after hearing it." }, "speed": { - "title": "speed", + "title": "Speed", "type": "number", - "default": 1000000, + "default": 1.0, "description": "Sets the entity's speed when moving toward the block." }, "start_distance": { - "title": "start distance", + "title": "Start Distance", "type": "number", - "default": 10000000, + "default": 10.0, "description": "Sets the distance the entity needs to be away from the block to attempt to start the goal." }, "stop_distance": { - "title": "stop distance", + "title": "Stop Distance", "type": "number", - "default": 2000000, + "default": 2.0, "description": "Sets the distance from the block the entity will attempt to reach." } }