-
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.
Update from 1.21.0 to 1.21.30 (#307)
* - Remove deprecated biome components * - Remove block hcf * - Add item specific destroy speeds * - Add owner distance filter * - Update scatter feature distribution property * - Add new entity components - Remove behavior.peek * - Add new item components - Remove hcf item stuff * - Remove volumes * - Add set_potion loot table function * - Mark fields as required * - Add item display transforms * - Add redstone conductivity block component * - Add is_navigating filter * - Fix move around target ref * - Add pack namespaced loot tables functions
- Loading branch information
Showing
68 changed files
with
1,487 additions
and
1,236 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
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
source/behavior/biomes/components/ignore_automatic_features.json
This file was deleted.
Oops, something went wrong.
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
22 changes: 22 additions & 0 deletions
22
source/behavior/blocks/format/components/redstone_conductivity.json
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"$id": "blockception.minecraft.behavior.blocks.minecraft.redstone_conductivity", | ||
"title": "Redstone Conductivity", | ||
"description": "The basic redstone properties of a block; if the component is not provided the default values are used. Requires the Upcoming Creator Features experiment.", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ ], | ||
"properties": { | ||
"allows_wire_to_step_down": { | ||
"title": "Allows Wire To Step Down", | ||
"description": "Specifies if redstone wire can stair-step downward on the block.", | ||
"type": "boolean", | ||
"default": true | ||
}, | ||
"redstone_conductor": { | ||
"title": "Redstone Conductor", | ||
"description": "Specifies if the block can be powered by redstone.", | ||
"type": "boolean", | ||
"default": false | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.