0

nether: move nether roof blocks into new class

This commit is contained in:
Nicolas F
2020-08-05 19:01:52 +02:00
parent 0776bf0a93
commit 1d40ea77d4
4 changed files with 17 additions and 4 deletions

View File

@@ -259,3 +259,15 @@ const mc_block_t block_class_alt_height[] = {
block_purpur_slab,
block_wooden_slab};
const size_t block_class_alt_height_len = COUNT_OF(block_class_alt_height);
const mc_block_t block_class_nether_roof[] = {
block_bedrock,
block_netherrack,
block_quartz_ore,
block_lava,
block_soul_sand,
block_basalt,
block_blackstone,
block_soul_soil,
block_nether_gold_ore};
const size_t block_class_nether_roof_len = COUNT_OF(block_class_nether_roof);