Add muddy mangrove roots

This commit is contained in:
Nicolas F 2022-06-23 16:36:12 +02:00
parent 8dc2da3648
commit 8c4184dfdd
4 changed files with 5 additions and 1 deletions

View File

@ -411,6 +411,7 @@ enum mc_block_id {
block_mud_brick_slab = 1124,
block_mangrove_roots = 1125,
block_mangrove_log = 1126,
block_muddy_mangrove_roots = 1127,
// adding a gap in the numbering of walls to keep them all
// in one numbering block starting at 1792

View File

@ -31,7 +31,7 @@
// increment this value if you've made a change to the c extension
// and want to force users to rebuild
#define OVERVIEWER_EXTENSION_VERSION 112
#define OVERVIEWER_EXTENSION_VERSION 113
#include <stdbool.h>
#include <stdint.h>

View File

@ -6388,3 +6388,5 @@ block(blockid=1122, top_image="assets/minecraft/textures/block/packed_mud.png")
block(blockid=1123, top_image="assets/minecraft/textures/block/mud_bricks.png")
block(blockid=1125, top_image="assets/minecraft/textures/block/mangrove_roots_top.png",
side_image="assets/minecraft/textures/block/mangrove_roots_side.png")
block(blockid=1127, top_image="assets/minecraft/textures/block/muddy_mangrove_roots_top.png",
side_image="assets/minecraft/textures/block/muddy_mangrove_roots_side.png")

View File

@ -872,6 +872,7 @@ class RegionSet(object):
'minecraft:mangrove_roots': (1125, 0),
'minecraft:mangrove_log': (1126, 0),
'minecraft:stripped_mangrove_log': (1126, 1),
'minecraft:muddy_mangrove_roots': (1127, 0),
# New blocks
'minecraft:carved_pumpkin': (11300, 0),