Skip to content

Commit 8c4184d

Browse files
committed
Add muddy mangrove roots
1 parent 8dc2da3 commit 8c4184d

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

overviewer_core/src/mc_id.h

+1
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,7 @@ enum mc_block_id {
411411
block_mud_brick_slab = 1124,
412412
block_mangrove_roots = 1125,
413413
block_mangrove_log = 1126,
414+
block_muddy_mangrove_roots = 1127,
414415

415416
// adding a gap in the numbering of walls to keep them all
416417
// in one numbering block starting at 1792

overviewer_core/src/overviewer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
// increment this value if you've made a change to the c extension
3333
// and want to force users to rebuild
34-
#define OVERVIEWER_EXTENSION_VERSION 112
34+
#define OVERVIEWER_EXTENSION_VERSION 113
3535

3636
#include <stdbool.h>
3737
#include <stdint.h>

overviewer_core/textures.py

+2
Original file line numberDiff line numberDiff line change
@@ -6388,3 +6388,5 @@ def spore_blossom(self, blockid, data):
63886388
block(blockid=1123, top_image="assets/minecraft/textures/block/mud_bricks.png")
63896389
block(blockid=1125, top_image="assets/minecraft/textures/block/mangrove_roots_top.png",
63906390
side_image="assets/minecraft/textures/block/mangrove_roots_side.png")
6391+
block(blockid=1127, top_image="assets/minecraft/textures/block/muddy_mangrove_roots_top.png",
6392+
side_image="assets/minecraft/textures/block/muddy_mangrove_roots_side.png")

overviewer_core/world.py

+1
Original file line numberDiff line numberDiff line change
@@ -872,6 +872,7 @@ def __init__(self, regiondir, rel):
872872
'minecraft:mangrove_roots': (1125, 0),
873873
'minecraft:mangrove_log': (1126, 0),
874874
'minecraft:stripped_mangrove_log': (1126, 1),
875+
'minecraft:muddy_mangrove_roots': (1127, 0),
875876

876877
# New blocks
877878
'minecraft:carved_pumpkin': (11300, 0),

0 commit comments

Comments
 (0)