1
0
Fork 0

edit comment

This commit is contained in:
mBornand 2020-05-08 16:28:05 +02:00 committed by Alexander Harkness
parent 295d8e1a6c
commit 4c0e7e0ab4
No known key found for this signature in database
GPG Key ID: 5187245ADF160B76
1 changed files with 1 additions and 1 deletions

View File

@ -833,7 +833,7 @@ void GetTallBirchTreeImage(Vector3i a_BlockPos, cNoise & a_Noise, int a_Seq, sSe
void GetConiferTreeImage(Vector3i a_BlockPos, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks, bool a_Large)
{
// Half chance for a spruce, half for a pine:
// Half chance for a spruce, half for a pine and for the large ones 3 chances for a pine and one for spruce:
if (a_Noise.IntNoise3DInt(a_BlockPos.addedX(64 * a_Seq).addedZ(32 * a_Seq)) < (a_Large ? 0x20000000 : 0x40000000))
{
GetSpruceTreeImage(a_BlockPos, a_Noise, a_Seq, a_LogBlocks, a_OtherBlocks, a_Large);