1
0
Fork 0

Fix Snow Spawn on Cobblestone Slab (#4564)

This commit is contained in:
Xenoxis 2020-03-28 00:37:32 +01:00 committed by GitHub
parent 92cf553bf8
commit ae4d387f1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -335,6 +335,7 @@ cBlockInfo::cBlockInfoArray::cBlockInfoArray()
Info[E_BLOCK_STONE_BRICK_STAIRS ].m_Transparent = true;
Info[E_BLOCK_STONE_BUTTON ].m_Transparent = true;
Info[E_BLOCK_STONE_PRESSURE_PLATE ].m_Transparent = true;
Info[E_BLOCK_STONE_SLAB ].m_Transparent = true;
Info[E_BLOCK_SUGARCANE ].m_Transparent = true;
Info[E_BLOCK_TALL_GRASS ].m_Transparent = true;
Info[E_BLOCK_TORCH ].m_Transparent = true;

View File

@ -741,7 +741,7 @@ void Temporary::RegisterAllBlockHandlers(BlockTypeRegistry & aRegistry)
{"minecraft:coal_ore", E_BLOCK_COAL_ORE},
{"minecraft:coarse_dirt", E_BLOCK_DIRT},
{"minecraft:cobblestone", E_BLOCK_COBBLESTONE},
{"minecraft:cobblestone_slab", E_BLOCK_WOODEN_SLAB},
{"minecraft:cobblestone_slab", E_BLOCK_STONE_SLAB},
{"minecraft:cobblestone_stairs", E_BLOCK_COBBLESTONE_STAIRS},
{"minecraft:cobblestone_wall", E_BLOCK_COBBLESTONE_WALL},
{"minecraft:cobweb", E_BLOCK_COBWEB},