This repository has been archived by the owner on Oct 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
2 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,6 +1,26 @@ | ||
### What's New: | ||
|
||
User Changes: | ||
|
||
This update extends the expression syntax to support nbt and block properties. | ||
|
||
* Returned to downloading mappings at startup. | ||
* Compound and List NBT tags are now properly supported. | ||
* Added `nbt` field to item stacks, entities and block entities. | ||
|
||
This Allows you to access NBT data like so: `this_entity.nbt.Air`. You should avoid NBT access, as it can get extremely slow. | ||
|
||
* Added `properties` field to *states. | ||
|
||
This can be used to access block state properties like so: `block_state.properties.candles`. | ||
|
||
* Added lots of new functions. Consult the wiki for more info! | ||
* `hasContext` and `structContainsKey` now accept VarArgs. | ||
* Removed arbitrary map support, as it was pretty poorly implemented. | ||
* Constants are now case-sensitive. | ||
|
||
Dev Changes: | ||
|
||
* Moved Command codecs to MapCodec. | ||
* Added BooleanExpression, similar to Arithmtica. | ||
* Added `runTriState` to EventExecutors. | ||
* Returned to downloading mappings at startup. | ||
* Added `runTriState` to EventExecutors. |