From 9a27d15368c1d1646e0fa502243d8cb7f6d6e336 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:50:50 +0100 Subject: [PATCH] Update go_and_give_items_to_owner.json corrected name, captialised titles and corrected default values --- .../behaviors/go_and_give_items_to_owner.json | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/source/behavior/entities/format/behaviors/go_and_give_items_to_owner.json b/source/behavior/entities/format/behaviors/go_and_give_items_to_owner.json index 0c5682c2..8daf854c 100644 --- a/source/behavior/entities/format/behaviors/go_and_give_items_to_owner.json +++ b/source/behavior/entities/format/behaviors/go_and_give_items_to_owner.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.go_and_give_items_to_owner", "type": "object", - "title": "Barter", + "title": "Go And Give Items To Owner", "description": "[EXPERIMENTAL BEHAVIOR] The entity will attempt to toss the items from its inventory to its owner.", "additionalProperties": false, "properties": { @@ -9,7 +9,7 @@ "$ref": "types/priority.json" }, "on_item_throw": { - "title": "on item throw", + "title": "On Item Throw", "$ref": "../types/trigger.json", "description": "Event(s) to run when this mob throws items.", "oneOf": [ @@ -21,33 +21,33 @@ ] }, "reach_mob_distance": { - "title": "reach mob distance", + "title": "Reach Mob Distance", "type": "number", - "default": 3000000, + "default": 3.0, "description": "Sets the desired distance to be reached before giving items to owner." }, "run_speed": { - "title": "run speed", + "title": "Run Speed", "type": "number", - "default": 1000000, + "default": 1.0, "description": "Sets the entity's speed when running toward the owner." }, "throw_force": { - "title": "throw force", + "title": "Throw Force", "type": "number", "default": 0.2, "description": "Sets the throw force." }, "throw_sound": { - "title": "throw sound", + "title": "Throw Sound", "type": "string", "default": "item_thrown", "description": "Sound to play when this mob throws an item." }, "vertical_throw_mul": { - "title": "vertical throw mul", + "title": "Vertical Throw Mul", "type": "number", - "default": 1500000, + "default": 1.5, "description": "Sets the vertical throw multiplier that is applied on top of the throw force in the vertical direction." } }