0

textures: add cut copper stairs

This commit is contained in:
Nicolas F
2021-06-13 11:43:10 +02:00
parent eddb0f2375
commit c1f1c31119
5 changed files with 52 additions and 5 deletions

View File

@@ -116,7 +116,15 @@ const mc_block_t block_class_stair[] = {
block_smooth_sandstone_stairs,
block_blackstone_stairs,
block_polished_blackstone_stairs,
block_polished_blackstone_brick_stairs};
block_polished_blackstone_brick_stairs,
block_cut_copper_stairs,
block_exposed_cut_copper_stairs,
block_weathered_cut_copper_stairs,
block_oxidized_cut_copper_stairs,
block_waxed_cut_copper_stairs,
block_waxed_exposed_cut_copper_stairs,
block_waxed_weathered_cut_copper_stairs,
block_waxed_oxidized_cut_copper_stairs};
const size_t block_class_stair_len = COUNT_OF(block_class_stair);
const mc_block_t block_class_door[] = {
@@ -199,6 +207,14 @@ const mc_block_t block_class_ancil[] = {
block_blackstone_stairs,
block_polished_blackstone_stairs,
block_polished_blackstone_brick_stairs,
block_cut_copper_stairs,
block_exposed_cut_copper_stairs,
block_weathered_cut_copper_stairs,
block_oxidized_cut_copper_stairs,
block_waxed_cut_copper_stairs,
block_waxed_exposed_cut_copper_stairs,
block_waxed_weathered_cut_copper_stairs,
block_waxed_oxidized_cut_copper_stairs,
block_grass,
block_flowing_water,
block_water,

View File

@@ -338,6 +338,16 @@ enum mc_block_id {
block_raw_copper = 1062,
block_copper_ore = 1063,
block_cut_copper_stairs = 1064,
block_exposed_cut_copper_stairs = 1065,
block_weathered_cut_copper_stairs = 1066,
block_oxidized_cut_copper_stairs = 1067,
block_waxed_cut_copper_stairs = 1068,
block_waxed_exposed_cut_copper_stairs = 1069,
block_waxed_weathered_cut_copper_stairs = 1070,
block_waxed_oxidized_cut_copper_stairs = 1071,
// adding a gap in the numbering of walls to keep them all
// in one numbering block starting at 1792
// all blocks between 1792 and 2047 are considered walls

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 102
#define OVERVIEWER_EXTENSION_VERSION 103
#include <stdbool.h>
#include <stdint.h>