nucleation 0.10.14

A high-performance Minecraft schematic parser and utility library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! V3204 (1.19.2 + 84) — TILE_ENTITY walker for minecraft:chiseled_bookshelf recursing
//! "Items" as item stacks; cites V3204.java. No other registrations present in the Java file.
use super::super::registry::RegistryBuilder;
use super::super::walker::item_lists;

const VERSION: i32 = 3204;

pub fn register(reg: &mut RegistryBuilder) {
    reg.tile_entity.add_walker(
        VERSION,
        0,
        "minecraft:chiseled_bookshelf",
        item_lists(&["Items"]),
    );
}