From dc543649861cbd0eaebd67e17084d370b3fe98af Mon Sep 17 00:00:00 2001 From: Daniel Mills Date: Mon, 17 Aug 2020 00:26:12 -0400 Subject: [PATCH] Fixes --- flat/biomes/flat.json | 7 +++---- flat/biomes/flat2.json | 25 +++++++++++++++++++++++++ flat/dimensions/flat.json | 1 + flat/generators/flat.json | 4 ++-- flat/regions/flat.json | 6 +++--- 5 files changed, 34 insertions(+), 9 deletions(-) create mode 100644 flat/biomes/flat2.json diff --git a/flat/biomes/flat.json b/flat/biomes/flat.json index 377f5c39..79c7ef41 100644 --- a/flat/biomes/flat.json +++ b/flat/biomes/flat.json @@ -8,8 +8,7 @@ "style": "STATIC" }, "palette": [ - "REDSTONE_BLOCK", - "WHITE_CONCRETE" + "GRASS_BLOCK" ] }, { @@ -19,8 +18,8 @@ } ], "generators": [{ - "min": 3, - "max": 3, + "min": 10, + "max": 10, "generator": "flat" }] } diff --git a/flat/biomes/flat2.json b/flat/biomes/flat2.json new file mode 100644 index 00000000..f0eb710d --- /dev/null +++ b/flat/biomes/flat2.json @@ -0,0 +1,25 @@ +{ + "name": "Flat 2", + "derivative": "PLAINS", + "layers": [ + { + "style": { + "zoom": 0.1, + "style": "STATIC" + }, + "palette": [ + "GRASS_BLOCK" + ] + }, + { + "palette": ["DIRT"], + "minHeight": 2, + "maxHeight": 2 + } + ], + "generators": [{ + "min": 20, + "max": 20, + "generator": "flat" + }] +} diff --git a/flat/dimensions/flat.json b/flat/dimensions/flat.json index 3dc84eb2..5ac7e950 100644 --- a/flat/dimensions/flat.json +++ b/flat/dimensions/flat.json @@ -8,6 +8,7 @@ "postProcessing": false, "caves": false, "placeObjects": false, + "coordFractureDistance": 24, "fluidHeight": 0, "vanillaStructures": true } diff --git a/flat/generators/flat.json b/flat/generators/flat.json index f667373b..ffef598d 100644 --- a/flat/generators/flat.json +++ b/flat/generators/flat.json @@ -1,7 +1,7 @@ { "seed": 1, - "interpolationFunction": "NONE", - "interpolationScale": 1, + "interpolationFunction": "BILINEAR", + "interpolationScale": 5, "composite": [ { "style": { diff --git a/flat/regions/flat.json b/flat/regions/flat.json index 317280c0..b36e994c 100644 --- a/flat/regions/flat.json +++ b/flat/regions/flat.json @@ -1,6 +1,6 @@ { - "shoreBiomes": ["flat"], - "landBiomes": ["flat"], - "seaBiomes": ["flat"], + "shoreBiomes": ["flat","flat2"], + "landBiomes": ["flat","flat2"], + "seaBiomes": ["flat","flat2"], "name": "Flat" }