summaryrefslogtreecommitdiffstats
path: root/source/cChunk.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/cChunk.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/cChunk.cpp b/source/cChunk.cpp
index 12b54c25e..c3fbafef9 100644
--- a/source/cChunk.cpp
+++ b/source/cChunk.cpp
@@ -365,6 +365,11 @@ void cChunk::Tick(float a_Dt)
FastSetBlock( m_BlockTickX, m_BlockTickY, m_BlockTickZ, E_BLOCK_AIR, GetLight( m_BlockMeta, Index ) );
m_World->GrowTree( m_BlockTickX + m_PosX*16, m_BlockTickY, m_BlockTickZ + m_PosZ*16 );
}
+ break;
+ case E_BLOCK_LEAVES: //todo, http://www.minecraftwiki.net/wiki/Data_values#Leaves
+ {
+ }
+ break;
default:
break;
}