Closed 1.0.0: World Generation Configurations

Yusunoha

New Member
Jul 29, 2019
6,440
-4
0
Version:
1.0.0

What is the bug:
it's not exactly a bug but I came across this when looking through the world generation for ores. most of the configurations look like this

Code:
    "iron": {
        "template": "uniform",
        "block": "iron_ore",
        "material": "minecraft:stone",
        "clusterSize": 8,
        "numClusters": 24,
        "minHeight": 0,
        "maxHeight": 64,
        "retrogen": "true",
        "biomeRestriction": "none",
        "biomes": [],
        "dimensionRestriction": "blacklist",
        "dimensions": [
            -1,
            1
        ]
    },

but lapis looks like this

Code:
    "lapis": {
        "template": "normal",
        "block": "lapis_ore",
        "material": "minecraft:stone",
        "clusterSize": 8,
        "numClusters": 1,
        "meanHeight": 16,
        "maxVariance": 8,
        "retrogen": "true",
        "biomeRestriction": "none",
        "biomes": [],
        "dimensionRestriction": "blacklist",
        "dimensions": [
            -1,
            1
        ]
    },

now as you can see instead of having minHeight and maxHeight lapis had meanHeight and maxVariance. I don't know if this will cause problems, but I did come across 1 lapis ore so far

Mod & Version:


Paste.feed-the-beast.com log:


Can it be repeated:


Known Fix:
 

Wackra

New Member
Jul 29, 2019
54
0
0
It's standard - Lapis will be centered round 16 and approx 8 above and below, but more towards the center.