Make biomal composition gen respect the shapegen when placing bedrock (#5579)

This commit is contained in:
NiLSPACE 2024-11-03 13:08:21 +01:00 committed by GitHub
parent 4b90000b8c
commit b31cfb4c36
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -456,7 +456,10 @@ protected:
}
HasHadWater = true;
} // for y
a_ChunkDesc.SetBlockType(a_RelX, 0, a_RelZ, E_BLOCK_BEDROCK);
if (a_ShapeColumn[0] > 0)
{
a_ChunkDesc.SetBlockType(a_RelX, 0, a_RelZ, E_BLOCK_BEDROCK);
}
}