diff options
author | Peter Bell <peterbell10@live.co.uk> | 2019-04-15 17:33:19 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2019-12-05 15:26:47 +0100 |
commit | fb2ef33c89e40e66365db7642bfa06258a61d5ab (patch) | |
tree | 9e6014f8dce0f0cc3a2418872c3fcbc57314b2b7 | |
parent | Add sponsor button (diff) | |
download | cuberite-fb2ef33c89e40e66365db7642bfa06258a61d5ab.tar cuberite-fb2ef33c89e40e66365db7642bfa06258a61d5ab.tar.gz cuberite-fb2ef33c89e40e66365db7642bfa06258a61d5ab.tar.bz2 cuberite-fb2ef33c89e40e66365db7642bfa06258a61d5ab.tar.lz cuberite-fb2ef33c89e40e66365db7642bfa06258a61d5ab.tar.xz cuberite-fb2ef33c89e40e66365db7642bfa06258a61d5ab.tar.zst cuberite-fb2ef33c89e40e66365db7642bfa06258a61d5ab.zip |
Diffstat (limited to '')
-rw-r--r-- | src/BlockInfo.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/BlockInfo.cpp b/src/BlockInfo.cpp index b8cc26f11..d17bc9962 100644 --- a/src/BlockInfo.cpp +++ b/src/BlockInfo.cpp @@ -246,6 +246,7 @@ cBlockInfo::cBlockInfoArray::cBlockInfoArray() Info[E_BLOCK_ENCHANTMENT_TABLE ].m_Transparent = true; Info[E_BLOCK_END_PORTAL ].m_Transparent = true; Info[E_BLOCK_END_PORTAL_FRAME ].m_Transparent = true; + Info[E_BLOCK_END_ROD ].m_Transparent = true; Info[E_BLOCK_ENDER_CHEST ].m_Transparent = true; Info[E_BLOCK_FARMLAND ].m_Transparent = true; Info[E_BLOCK_FENCE ].m_Transparent = true; @@ -256,11 +257,13 @@ cBlockInfo::cBlockInfoArray::cBlockInfoArray() Info[E_BLOCK_GLASS_PANE ].m_Transparent = true; Info[E_BLOCK_GLOWSTONE ].m_Transparent = true; Info[E_BLOCK_GRAY_SHULKER_BOX ].m_Transparent = true; + Info[E_BLOCK_GREEN_SHULKER_BOX ].m_Transparent = true; Info[E_BLOCK_HEAD ].m_Transparent = true; Info[E_BLOCK_HEAVY_WEIGHTED_PRESSURE_PLATE].m_Transparent = true; Info[E_BLOCK_HOPPER ].m_Transparent = true; Info[E_BLOCK_ICE ].m_Transparent = true; Info[E_BLOCK_INACTIVE_COMPARATOR ].m_Transparent = true; + Info[E_BLOCK_INVERTED_DAYLIGHT_SENSOR ].m_Transparent = true; Info[E_BLOCK_IRON_BARS ].m_Transparent = true; Info[E_BLOCK_IRON_DOOR ].m_Transparent = true; Info[E_BLOCK_IRON_TRAPDOOR ].m_Transparent = true; @@ -316,6 +319,7 @@ cBlockInfo::cBlockInfoArray::cBlockInfoArray() Info[E_BLOCK_REDSTONE_WIRE ].m_Transparent = true; Info[E_BLOCK_SANDSTONE_STAIRS ].m_Transparent = true; Info[E_BLOCK_SAPLING ].m_Transparent = true; + Info[E_BLOCK_SEA_LANTERN ].m_Transparent = true; Info[E_BLOCK_SIGN_POST ].m_Transparent = true; Info[E_BLOCK_SNOW ].m_Transparent = true; Info[E_BLOCK_SPRUCE_DOOR ].m_Transparent = true; @@ -594,6 +598,7 @@ cBlockInfo::cBlockInfoArray::cBlockInfoArray() Info[E_BLOCK_BROWN_GLAZED_TERRACOTTA ].m_FullyOccupiesVoxel = true; Info[E_BLOCK_GREEN_GLAZED_TERRACOTTA ].m_FullyOccupiesVoxel = true; Info[E_BLOCK_BLACK_GLAZED_TERRACOTTA ].m_FullyOccupiesVoxel = true; + Info[E_BLOCK_RED_GLAZED_TERRACOTTA ].m_FullyOccupiesVoxel = true; Info[E_BLOCK_GRASS ].m_FullyOccupiesVoxel = true; Info[E_BLOCK_GRAVEL ].m_FullyOccupiesVoxel = true; Info[E_BLOCK_HARDENED_CLAY ].m_FullyOccupiesVoxel = true; |