mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-03-04 17:23:33 +01:00
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:
parent
e5b7838ac5
commit
997d807dc7
2 changed files with 8 additions and 0 deletions
|
@ -5694,6 +5694,13 @@ pub const BLOCK_TYPES: &[(&str, BlockType)] = &[
|
|||
color: Color([0, 0, 0]),
|
||||
},
|
||||
),
|
||||
(
|
||||
"short_grass",
|
||||
BlockType {
|
||||
flags: make_bitflags!(BlockFlag::{}),
|
||||
color: Color([0, 0, 0]),
|
||||
},
|
||||
),
|
||||
(
|
||||
"shroomlight",
|
||||
BlockType {
|
||||
|
|
|
@ -1558,6 +1558,7 @@
|
|||
"sea_lantern": {},
|
||||
"sea_pickle": {},
|
||||
"seagrass": null,
|
||||
"short_grass": null,
|
||||
"shroomlight": {},
|
||||
"shulker_box": {},
|
||||
"sign": {
|
||||
|
|
Loading…
Add table
Reference in a new issue