Implement smooth sandstone stairs
This commit is contained in:
@@ -77,7 +77,9 @@ const mc_block_t block_class_stair[] = {
|
||||
block_dark_prismarine_stairs,
|
||||
block_prismarine_brick_stairs,
|
||||
block_mossy_cobblestone_stairs,
|
||||
block_mossy_stone_brick_stairs};
|
||||
block_mossy_stone_brick_stairs,
|
||||
block_smooth_sandstone_stairs,
|
||||
};
|
||||
const size_t block_class_stair_len = COUNT_OF(block_class_stair);
|
||||
|
||||
const mc_block_t block_class_door[] = {
|
||||
@@ -136,6 +138,7 @@ const mc_block_t block_class_ancil[] = {
|
||||
block_prismarine_brick_stairs,
|
||||
block_mossy_cobblestone_stairs,
|
||||
block_mossy_stone_brick_stairs,
|
||||
block_smooth_sandstone_stairs,
|
||||
block_grass,
|
||||
block_flowing_water,
|
||||
block_water,
|
||||
@@ -182,6 +185,7 @@ const mc_block_t block_class_alt_height[] = {
|
||||
block_prismarine_brick_stairs,
|
||||
block_mossy_cobblestone_stairs,
|
||||
block_mossy_stone_brick_stairs,
|
||||
block_smooth_sandstone_stairs,
|
||||
block_prismarine_slab,
|
||||
block_dark_prismarine_slab,
|
||||
block_prismarine_brick_slab,
|
||||
|
||||
@@ -294,6 +294,7 @@ enum mc_block_id {
|
||||
block_mossy_cobblestone_stairs = 11371,
|
||||
block_mossy_stone_brick_wall = 11372,
|
||||
block_lantern = 11373,
|
||||
block_smooth_sandstone_stairs = 11374,
|
||||
};
|
||||
|
||||
typedef uint16_t mc_block_t;
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
|
||||
// increment this value if you've made a change to the c extesion
|
||||
// and want to force users to rebuild
|
||||
#define OVERVIEWER_EXTENSION_VERSION 71
|
||||
#define OVERVIEWER_EXTENSION_VERSION 72
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
||||
Reference in New Issue
Block a user