resource: add short_grass block type

Besides adding a number of experimental block types for the 1.21 preview,
Minecraft 1.20.3 also renamed the "grass" block to "short grass"
internally. Add the new block name to avoid warnings during generation.
This commit is contained in:
Matthias Schiffer 2024-01-05 21:52:30 +01:00
parent e5b7838ac5
commit 997d807dc7
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C
2 changed files with 8 additions and 0 deletions

View file

@ -5694,6 +5694,13 @@ pub const BLOCK_TYPES: &[(&str, BlockType)] = &[
color: Color([0, 0, 0]), color: Color([0, 0, 0]),
}, },
), ),
(
"short_grass",
BlockType {
flags: make_bitflags!(BlockFlag::{}),
color: Color([0, 0, 0]),
},
),
( (
"shroomlight", "shroomlight",
BlockType { BlockType {

View file

@ -1558,6 +1558,7 @@
"sea_lantern": {}, "sea_lantern": {},
"sea_pickle": {}, "sea_pickle": {},
"seagrass": null, "seagrass": null,
"short_grass": null,
"shroomlight": {}, "shroomlight": {},
"shulker_box": {}, "shulker_box": {},
"sign": { "sign": {