Merge pull request #79 from neocturne/mc1.21.6

resource: add Minecraft 1.21.6 Dried Ghast block type
This commit is contained in:
Matthias Schiffer 2025-06-30 21:59:27 +02:00 committed by GitHub
commit eaf09eeb73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 15 additions and 2 deletions

View file

@ -4,7 +4,7 @@
### Added
- Added support for Minecraft 1.21.5
- Added support for Minecraft 1.21.5 to 1.21.7
Added new block types and handling for changed sign text storage format.

View file

@ -2,7 +2,7 @@
* Render beautiful maps of your [Minecraft](https://minecraft.net/) worlds!
* Put them on a webserver and view them in your browser!
* Compatible with unmodified Minecraft Java Edition 1.8 up to 1.21.4 (no mod installation required!)
* Compatible with unmodified Minecraft Java Edition 1.8 up to 1.21.7 (no mod installation required!)
* Illumination layer: the world at night
* Fast: create a full map for a huge 3GB savegame in less than 5 minutes in single-threaded operation
* Multi-threading support: pass `-j N` to the renderer to use `N` parallel threads for generation

View file

@ -3508,6 +3508,16 @@ pub const BLOCK_TYPES: &[(&str, ConstBlockType)] = &[
sign_material: None,
},
),
(
"dried_ghast",
ConstBlockType {
block_color: BlockColor {
flags: make_bitflags!(BlockFlag::{Opaque}),
color: Color([179, 168, 168]),
},
sign_material: None,
},
),
(
"dried_kelp_block",
ConstBlockType {

View file

@ -720,6 +720,9 @@
"dragon_egg": {},
"dragon_head": null,
"dragon_wall_head": null,
"dried_ghast": {
"texture": "dried_ghast_hydration_1_top"
},
"dried_kelp_block": {
"texture": "dried_kelp_top"
},