-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* - Add min to health * - Update timer flag to match sniffer.json * - Update can_fly * - Remove load on low memory
- Loading branch information
Showing
2 changed files
with
11 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
{ | ||
"$id": "blockception.minecraft.behavior.entities.minecraft.can_fly", | ||
"type": "object", | ||
"title": "Can Fly", | ||
"additionalProperties": false, | ||
"description": "Marks the entity as being able to fly, the pathfinder won't be restricted to paths where a solid block is required underneath it.", | ||
"required": [], | ||
"properties": { | ||
"value": { | ||
"anyOf": [ | ||
{ | ||
"type":"object", | ||
"additionalProperties": false | ||
}, | ||
{ | ||
"type": "boolean", | ||
"default": true, | ||
"description": "Marks the entity as being able to fly, the pathfinder won't be restricted to paths where a solid block is required underneath it.", | ||
"title": "Value" | ||
"default": false | ||
} | ||
}, | ||
], | ||
"examples": [ | ||
{ | ||
"value": true | ||
} | ||
true, | ||
false | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters