nucleation 0.10.13

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
//! V3082 (22w11a + 2) — schematic-relevant subset of `V3082.java`.
//!
//! Kept: the ENTITY `minecraft:chest_boat` walker (item list `Items`).
//!
//! VERSION = MCVersions.V22W11A (3080) + 2 = 3082.

use super::super::registry::RegistryBuilder;
use super::super::walker::item_lists;

const VERSION: i32 = 3082;

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