diff options
author | luksor111@gmail.com <luksor111@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-12-19 10:29:53 +0100 |
---|---|---|
committer | luksor111@gmail.com <luksor111@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-12-19 10:29:53 +0100 |
commit | a10c4774f541028817c2a08dc6860fef252d0200 (patch) | |
tree | 4db3805965552fccc43d14febb9e83148a0a3f5b /source/BlockID.cpp | |
parent | Fixed time calculation in cWorld::Tick() (diff) | |
download | cuberite-a10c4774f541028817c2a08dc6860fef252d0200.tar cuberite-a10c4774f541028817c2a08dc6860fef252d0200.tar.gz cuberite-a10c4774f541028817c2a08dc6860fef252d0200.tar.bz2 cuberite-a10c4774f541028817c2a08dc6860fef252d0200.tar.lz cuberite-a10c4774f541028817c2a08dc6860fef252d0200.tar.xz cuberite-a10c4774f541028817c2a08dc6860fef252d0200.tar.zst cuberite-a10c4774f541028817c2a08dc6860fef252d0200.zip |
Diffstat (limited to 'source/BlockID.cpp')
-rw-r--r-- | source/BlockID.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/BlockID.cpp b/source/BlockID.cpp index 9a3682615..5f7302a85 100644 --- a/source/BlockID.cpp +++ b/source/BlockID.cpp @@ -395,9 +395,12 @@ public: g_BlockTransparent[E_BLOCK_CHEST] = true; g_BlockTransparent[E_BLOCK_COBWEB] = true; g_BlockTransparent[E_BLOCK_CROPS] = true; + g_BlockTransparent[E_BLOCK_FENCE] = true; + g_BlockTransparent[E_BLOCK_FENCE_GATE] = true; g_BlockTransparent[E_BLOCK_FIRE] = true; g_BlockTransparent[E_BLOCK_GLASS] = true; g_BlockTransparent[E_BLOCK_ICE] = true; + g_BlockTransparent[E_BLOCK_IRON_DOOR] = true; g_BlockTransparent[E_BLOCK_LEAVES] = true; g_BlockTransparent[E_BLOCK_RED_MUSHROOM] = true; g_BlockTransparent[E_BLOCK_RED_ROSE] = true; @@ -407,6 +410,7 @@ public: g_BlockTransparent[E_BLOCK_TORCH] = true; g_BlockTransparent[E_BLOCK_VINES] = true; g_BlockTransparent[E_BLOCK_WALLSIGN] = true; + g_BlockTransparent[E_BLOCK_WOODEN_DOOR] = true; g_BlockTransparent[E_BLOCK_YELLOW_FLOWER] = true; g_BlockTransparent[E_BLOCK_RAIL] = true; g_BlockTransparent[E_BLOCK_DETECTOR_RAIL] = true; |