summaryrefslogtreecommitdiffstats
path: root/source/cChunk.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-07-15 15:34:53 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-07-15 15:34:53 +0200
commit6cf4772b54e7a8fdd3eb56465f3c272717d75fd9 (patch)
tree90c13facd6f9f00e29317d9e307af5858770d0c3 /source/cChunk.cpp
parentBasic jungle trees with vines, efficient trees handling. (diff)
downloadcuberite-6cf4772b54e7a8fdd3eb56465f3c272717d75fd9.tar
cuberite-6cf4772b54e7a8fdd3eb56465f3c272717d75fd9.tar.gz
cuberite-6cf4772b54e7a8fdd3eb56465f3c272717d75fd9.tar.bz2
cuberite-6cf4772b54e7a8fdd3eb56465f3c272717d75fd9.tar.lz
cuberite-6cf4772b54e7a8fdd3eb56465f3c272717d75fd9.tar.xz
cuberite-6cf4772b54e7a8fdd3eb56465f3c272717d75fd9.tar.zst
cuberite-6cf4772b54e7a8fdd3eb56465f3c272717d75fd9.zip
Diffstat (limited to '')
-rw-r--r--source/cChunk.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cChunk.cpp b/source/cChunk.cpp
index cd94e3413..a7405ced2 100644
--- a/source/cChunk.cpp
+++ b/source/cChunk.cpp
@@ -42,7 +42,7 @@
// Leaves can be this many blocks that away (inclusive) from the log not to decay
-#define LEAVES_CHECK_DISTANCE 5
+#define LEAVES_CHECK_DISTANCE 6
@@ -797,7 +797,7 @@ void cChunk::TickLeaves(int a_RelX, int a_RelY, int a_RelZ, MTRand & a_TickRando
if (HasNearLog(Area, BaseX, a_RelY, BaseZ))
{
- // Wood found, the leaves stay; mark them as checked:
+ // Log found, the leaves stay; mark them as checked:
SetNibble(m_BlockMeta, a_RelX, a_RelY, a_RelZ, Meta & 0x07);
return;
}