summaryrefslogtreecommitdiffstats
path: root/source/Generating/CompoGen.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-14 19:05:00 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-14 19:05:00 +0200
commitdd554175a42060bcab425231bef5c33977025c68 (patch)
treee50375d829c9fb0d1f51e585e7b0de151f7a3083 /source/Generating/CompoGen.cpp
parentFixed the bucket handling code trying to simulate at the wrong coords (client sends all coords as -1 to signify "item use") (diff)
downloadcuberite-dd554175a42060bcab425231bef5c33977025c68.tar
cuberite-dd554175a42060bcab425231bef5c33977025c68.tar.gz
cuberite-dd554175a42060bcab425231bef5c33977025c68.tar.bz2
cuberite-dd554175a42060bcab425231bef5c33977025c68.tar.lz
cuberite-dd554175a42060bcab425231bef5c33977025c68.tar.xz
cuberite-dd554175a42060bcab425231bef5c33977025c68.tar.zst
cuberite-dd554175a42060bcab425231bef5c33977025c68.zip
Diffstat (limited to 'source/Generating/CompoGen.cpp')
-rw-r--r--source/Generating/CompoGen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Generating/CompoGen.cpp b/source/Generating/CompoGen.cpp
index 046310d91..9983a6d57 100644
--- a/source/Generating/CompoGen.cpp
+++ b/source/Generating/CompoGen.cpp
@@ -372,7 +372,7 @@ void cCompoGenBiomal::FillColumnWaterSand(int a_RelX, int a_RelZ, int a_Height,
FillColumnSand(a_RelX, a_RelZ, a_Height, a_BlockTypes);
for (int y = a_Height + 1; y <= m_SeaLevel + 1; y++)
{
- cChunkDef::SetBlock(a_BlockTypes, a_RelX, y, a_RelZ, E_BLOCK_WATER);
+ cChunkDef::SetBlock(a_BlockTypes, a_RelX, y, a_RelZ, E_BLOCK_STATIONARY_WATER);
}
}
@@ -404,7 +404,7 @@ void cCompoGenBiomal::FillColumnWaterMix(int a_ChunkX, int a_ChunkZ, int a_RelX,
}
for (int y = a_Height + 1; y <= m_SeaLevel + 1; y++)
{
- cChunkDef::SetBlock(a_BlockTypes, a_RelX, y, a_RelZ, E_BLOCK_WATER);
+ cChunkDef::SetBlock(a_BlockTypes, a_RelX, y, a_RelZ, E_BLOCK_STATIONARY_WATER);
}
}
}