1
0

CompoGenBiomal: Fixed sealevel not generating properly.

This commit is contained in:
Mattes D 2014-11-20 18:05:30 +01:00
parent 76058e8183
commit 1e887d1381

View File

@ -427,7 +427,8 @@ protected:
{ {
bool HasHadWater = false; bool HasHadWater = false;
int PatternIdx = 0; int PatternIdx = 0;
for (int y = a_ChunkDesc.GetHeight(a_RelX, a_RelZ); y > 0; y--) int top = std::max(m_SeaLevel, a_ChunkDesc.GetHeight(a_RelX, a_RelZ));
for (int y = top; y > 0; y--)
{ {
if (a_ShapeColumn[y] > 0) if (a_ShapeColumn[y] > 0)
{ {