diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-02-05 21:32:44 +0100 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-02-05 21:32:44 +0100 |
commit | e3fe15ca59b211be6508bf14373e81402b00d487 (patch) | |
tree | 5a73141822b649d10281799e68ee683f48c636fd /src/Blocks/BlockSapling.h | |
parent | Correct typo in documentation. (diff) | |
parent | add self to CONTRIBUTORS (diff) | |
download | cuberite-e3fe15ca59b211be6508bf14373e81402b00d487.tar cuberite-e3fe15ca59b211be6508bf14373e81402b00d487.tar.gz cuberite-e3fe15ca59b211be6508bf14373e81402b00d487.tar.bz2 cuberite-e3fe15ca59b211be6508bf14373e81402b00d487.tar.lz cuberite-e3fe15ca59b211be6508bf14373e81402b00d487.tar.xz cuberite-e3fe15ca59b211be6508bf14373e81402b00d487.tar.zst cuberite-e3fe15ca59b211be6508bf14373e81402b00d487.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockSapling.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/Blocks/BlockSapling.h b/src/Blocks/BlockSapling.h index 1770cc4aa..ea10d5c20 100644 --- a/src/Blocks/BlockSapling.h +++ b/src/Blocks/BlockSapling.h @@ -92,7 +92,18 @@ public: } break; } - // Dark Oaks only grow in a 2x2 area + // Acacias don't need horizontal clearance + case E_META_SAPLING_ACACIA: + { + if (!IsLargeTree(a_Chunk, a_RelX, a_RelY, a_RelZ, a_Meta)) + { + return false; + } + CheckHeight = 7; + LargeTree = true; + break; + } + // Dark Oaks don't need horizontal clearance case E_META_SAPLING_DARK_OAK: { if (!IsLargeTree(a_Chunk, a_RelX, a_RelY, a_RelZ, a_Meta)) |