-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add item NBT to ArrowBase, block_state NBT to TNT for 23w43a (#53)
- Loading branch information
Showing
3 changed files
with
11 additions
and
5 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 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 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,12 @@ | ||
use ::minecraft::util::BlockState; | ||
|
||
compound Tnt extends super::EntityBase { | ||
/// The number of ticks until this tnt explodes | ||
Fuse: short | ||
fuse: short, | ||
// The block model this entity will be rendered with | ||
/// Does display most block entities (eg. Chests, Beds, Furnaces, etc). | ||
/// Does not display specially rendered block entities (eg. The bell in a bell block, an end gateway, the book on an enchantment table, a banner, a sign, etc). | ||
block_state: BlockState | ||
} | ||
|
||
Tnt describes minecraft:entity[minecraft:tnt]; |