diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-10-23 21:39:30 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-10-23 21:39:30 +0200 |
commit | c3ad0ff46017d0abb4742466a85a4e393f60f7d2 (patch) | |
tree | a08af2499c5542a2fb6c96f84279c0c50bef9701 | |
parent | New Block property g_BlockIsSolid[]; Fixed ladder, torches and vines placement. (Patch contributed by funmaker) (diff) | |
download | cuberite-c3ad0ff46017d0abb4742466a85a4e393f60f7d2.tar cuberite-c3ad0ff46017d0abb4742466a85a4e393f60f7d2.tar.gz cuberite-c3ad0ff46017d0abb4742466a85a4e393f60f7d2.tar.bz2 cuberite-c3ad0ff46017d0abb4742466a85a4e393f60f7d2.tar.lz cuberite-c3ad0ff46017d0abb4742466a85a4e393f60f7d2.tar.xz cuberite-c3ad0ff46017d0abb4742466a85a4e393f60f7d2.tar.zst cuberite-c3ad0ff46017d0abb4742466a85a4e393f60f7d2.zip |
-rw-r--r-- | source/Generating/StructGen.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/source/Generating/StructGen.cpp b/source/Generating/StructGen.cpp index 037aa46f8..30d7b48a7 100644 --- a/source/Generating/StructGen.cpp +++ b/source/Generating/StructGen.cpp @@ -17,24 +17,24 @@ const int MAX_HEIGHT_COAL = 127; const int NUM_NESTS_COAL = 50; const int NEST_SIZE_COAL = 10; -const int MAX_HEIGHT_IRON = 70; -const int NUM_NESTS_IRON = 20; +const int MAX_HEIGHT_IRON = 64; +const int NUM_NESTS_IRON = 14; const int NEST_SIZE_IRON = 6; -const int MAX_HEIGHT_REDSTONE = 40; -const int NUM_NESTS_REDSTONE = 7; +const int MAX_HEIGHT_REDSTONE = 16; +const int NUM_NESTS_REDSTONE = 4; const int NEST_SIZE_REDSTONE = 6; -const int MAX_HEIGHT_GOLD = 35; -const int NUM_NESTS_GOLD = 6; +const int MAX_HEIGHT_GOLD = 32; +const int NUM_NESTS_GOLD = 2; const int NEST_SIZE_GOLD = 6; -const int MAX_HEIGHT_DIAMOND = 16; -const int NUM_NESTS_DIAMOND = 3; -const int NEST_SIZE_DIAMOND = 5; +const int MAX_HEIGHT_DIAMOND = 15; +const int NUM_NESTS_DIAMOND = 1; +const int NEST_SIZE_DIAMOND = 4; const int MAX_HEIGHT_LAPIS = 30; -const int NUM_NESTS_LAPIS = 3; +const int NUM_NESTS_LAPIS = 2; const int NEST_SIZE_LAPIS = 5; const int MAX_HEIGHT_DIRT = 127; |