summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-03-30 00:20:06 +0100
committermadmaxoft <github@xoft.cz>2014-03-30 00:20:06 +0100
commit6b29edc1582940a08c0d28822a4ea4c95c55d2e0 (patch)
treeebb5ae75cccff16fe6570f7f85b3ae080c7f8adc
parentFixed chest rotator. (diff)
downloadcuberite-6b29edc1582940a08c0d28822a4ea4c95c55d2e0.tar
cuberite-6b29edc1582940a08c0d28822a4ea4c95c55d2e0.tar.gz
cuberite-6b29edc1582940a08c0d28822a4ea4c95c55d2e0.tar.bz2
cuberite-6b29edc1582940a08c0d28822a4ea4c95c55d2e0.tar.lz
cuberite-6b29edc1582940a08c0d28822a4ea4c95c55d2e0.tar.xz
cuberite-6b29edc1582940a08c0d28822a4ea4c95c55d2e0.tar.zst
cuberite-6b29edc1582940a08c0d28822a4ea4c95c55d2e0.zip
-rw-r--r--src/Generating/NetherFortGen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Generating/NetherFortGen.cpp b/src/Generating/NetherFortGen.cpp
index 09c992e22..02779a8a3 100644
--- a/src/Generating/NetherFortGen.cpp
+++ b/src/Generating/NetherFortGen.cpp
@@ -41,9 +41,9 @@ public:
int BlockY = 64;
// Generate pieces:
- for (int i = 0; m_Pieces.size() < (size_t)(a_MaxDepth * a_MaxDepth / 16 + a_MaxDepth); i++)
+ for (int i = 0; m_Pieces.size() < (size_t)(a_MaxDepth * a_MaxDepth / 8 + a_MaxDepth); i++)
{
- cBFSPieceGenerator pg(m_ParentGen, a_Seed + 1);
+ cBFSPieceGenerator pg(m_ParentGen, a_Seed + i);
pg.PlacePieces(a_BlockX, BlockY, a_BlockZ, a_MaxDepth, m_Pieces);
}
}