diff options
author | nesco <emmanuel@federbusch.fr> | 2013-11-12 19:26:35 +0100 |
---|---|---|
committer | nesco <emmanuel@federbusch.fr> | 2013-11-12 19:26:35 +0100 |
commit | 56044aff33ff5f51604d9283379baad6bd174558 (patch) | |
tree | a049055a9006e17311e2f5c84ec5f83a9be98325 /source | |
parent | Update Enchantments.cpp (diff) | |
download | cuberite-56044aff33ff5f51604d9283379baad6bd174558.tar cuberite-56044aff33ff5f51604d9283379baad6bd174558.tar.gz cuberite-56044aff33ff5f51604d9283379baad6bd174558.tar.bz2 cuberite-56044aff33ff5f51604d9283379baad6bd174558.tar.lz cuberite-56044aff33ff5f51604d9283379baad6bd174558.tar.xz cuberite-56044aff33ff5f51604d9283379baad6bd174558.tar.zst cuberite-56044aff33ff5f51604d9283379baad6bd174558.zip |
Diffstat (limited to 'source')
-rw-r--r-- | source/BlockID.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/BlockID.cpp b/source/BlockID.cpp index 995aede0a..82f69a7d6 100644 --- a/source/BlockID.cpp +++ b/source/BlockID.cpp @@ -651,15 +651,18 @@ public: // Transparent blocks g_BlockTransparent[E_BLOCK_AIR] = true; g_BlockTransparent[E_BLOCK_ACTIVATOR_RAIL] = true; + g_BlockTransparent[E_BLOCK_BIG_FLOWER] = true; g_BlockTransparent[E_BLOCK_BROWN_MUSHROOM] = true; g_BlockTransparent[E_BLOCK_CARROTS] = true; g_BlockTransparent[E_BLOCK_CHEST] = true; g_BlockTransparent[E_BLOCK_COBWEB] = true; g_BlockTransparent[E_BLOCK_CROPS] = true; + g_BlockTransparent[E_BLOCK_DANDELION] = true; g_BlockTransparent[E_BLOCK_DETECTOR_RAIL] = true; g_BlockTransparent[E_BLOCK_FENCE] = true; g_BlockTransparent[E_BLOCK_FENCE_GATE] = true; g_BlockTransparent[E_BLOCK_FIRE] = true; + g_BlockTransparent[E_BLOCK_FLOWER] = true; g_BlockTransparent[E_BLOCK_FLOWER_POT] = true; g_BlockTransparent[E_BLOCK_GLASS] = true; g_BlockTransparent[E_BLOCK_GLASS_PANE] = true; @@ -691,9 +694,6 @@ public: g_BlockTransparent[E_BLOCK_WALLSIGN] = true; g_BlockTransparent[E_BLOCK_WOODEN_DOOR] = true; g_BlockTransparent[E_BLOCK_WOODEN_PRESSURE_PLATE] = true; - g_BlockTransparent[E_BLOCK_DANDELION] = true; - g_BlockTransparent[E_BLOCK_FLOWER] = true; - g_BlockTransparent[E_BLOCK_BIG_FLOWER] = true; // TODO: Any other transparent blocks? |