world: fix dirt path rendering for 1.17
This commit is contained in:
@@ -220,7 +220,7 @@ enum mc_block_id {
|
|||||||
block_purpur_slab = 205,
|
block_purpur_slab = 205,
|
||||||
block_end_bricks = 206,
|
block_end_bricks = 206,
|
||||||
block_beetroots = 207,
|
block_beetroots = 207,
|
||||||
block_grass_path = 208,
|
block_dirt_path = 208,
|
||||||
block_end_gateway = 209,
|
block_end_gateway = 209,
|
||||||
block_repeating_command_block = 210,
|
block_repeating_command_block = 210,
|
||||||
block_chain_command_block = 211,
|
block_chain_command_block = 211,
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
|
|
||||||
// increment this value if you've made a change to the c extension
|
// increment this value if you've made a change to the c extension
|
||||||
// and want to force users to rebuild
|
// and want to force users to rebuild
|
||||||
#define OVERVIEWER_EXTENSION_VERSION 98
|
#define OVERVIEWER_EXTENSION_VERSION 99
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|||||||
@@ -669,7 +669,7 @@ class RegionSet(object):
|
|||||||
'minecraft:purpur_slab': (205, 0),
|
'minecraft:purpur_slab': (205, 0),
|
||||||
'minecraft:end_stone_bricks': (206, 0),
|
'minecraft:end_stone_bricks': (206, 0),
|
||||||
'minecraft:beetroots': (207, 0),
|
'minecraft:beetroots': (207, 0),
|
||||||
'minecraft:grass_path': (208, 0),
|
'minecraft:dirt_path': (208, 0),
|
||||||
'minecraft:repeating_command_block': (210, 0),
|
'minecraft:repeating_command_block': (210, 0),
|
||||||
'minecraft:chain_command_block': (211, 0),
|
'minecraft:chain_command_block': (211, 0),
|
||||||
'minecraft:frosted_ice': (212, 0),
|
'minecraft:frosted_ice': (212, 0),
|
||||||
|
|||||||
Reference in New Issue
Block a user