diff --git a/documentation/Addons.html b/documentation/Addons.html index 0c15e5889..8ed235a39 100644 --- a/documentation/Addons.html +++ b/documentation/Addons.html @@ -1,4 +1,4 @@ -
Index
Name | Type | Default Value | Description | can_teleport | Boolean | true | -Specify if the mob can teleport to the player if it is too far away | +Defines if the mob will teleport to its owner when too far away. |
---|---|---|---|---|---|
ignore_vibration | Boolean | true | -Specify if the mob will follow the owner if it has heard a vibration lately | +Defines if the mob should disregard following its owner after detecting a recent vibration. | |
max_distance | Decimal | 60.0 | -The maximum distance in blocks this mob can be from its owner to start following, only used when canTeleport is false | +The maximum distance the mob can be from its owner to start following it. Applicable only when "can_teleport" is set to false. | +|
post_teleport_distance | +Boolean | +"stop_distance" + 1 | +Defines how far (in blocks) the entity will be from its owner after teleporting. If not specified, it defaults to "stop_distance" + 1, allowing the entity to seamlessly resume navigation. | ||
speed_multiplier | @@ -13239,13 +13245,13 @@start_distance | Decimal | 10.0 | -The distance in blocks that the owner can be away from this mob before it starts following it | +The minimum distance the mob must be from its owner to start following it. |
stop_distance | Decimal | 2.0 | -The distance in blocks this mob will stop from its owner while following it | +The distance at which the mob will stop following its owner. |
Index