Skip to content
This repository was archived by the owner on Oct 20, 2024. It is now read-only.

Commit 6f464f1

Browse files
committed
CHANGELOG.md
1 parent b5cabb9 commit 6f464f1

1 file changed

Lines changed: 22 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
11
## What's new:
22

3-
* Minor internal changes.
3+
* [NEW] Data pack support!
4+
* You can now add custom behaviors with commands using data packs!
5+
* Example:
6+
7+
Create a file in `good_tea/behaviors`.
8+
9+
```json
10+
{
11+
"item_id": "minecraft:nether_star", //can be an array. []
12+
"disabled": false //disables any behavior. False by default.
13+
"complement": true //Should this behavior complement or replace others. True by default.
14+
"user_commands": [ //Any commands executed on user. Supports @s and @p
15+
"/kill @s"
16+
],
17+
"server_commands": [ //Executed as server. No user or pos context.
18+
19+
]
20+
}
21+
```
22+
23+
* Item group items are sorted by rawId now.
24+
* Teas with no behavior will fall back to item's default behavior. None for most, eating for food.
425
* Updated Dark Matter.

0 commit comments

Comments
 (0)