So I thought I would share two items from my recent worldgen!
First up, if you are using Underground Biomes to provide many different kinds of stone, you must change the materials setting on all ores. If you don't, ore will only spawn where vanilla stone is! Our world had an 80% reduction in resources as a result, and had to be recreated.
Second, it really helps to use WorldEdit to survey the result of ore generation. The '//distr' command is good at displaying a list, but you can also use WE to remove all the other blocks. With Forge Essentials installed you can run this server side as a batch job. I use Minecraft Server Manager on Linux, so here is the script:
When done you have 17x17 chunks of empty air and ores floating!
First up, if you are using Underground Biomes to provide many different kinds of stone, you must change the materials setting on all ores. If you don't, ore will only spawn where vanilla stone is! Our world had an 80% reduction in resources as a result, and had to be recreated.
Code:
"material": [
{"name": "stone", "metadata": 0},
{"name": "UndergroundBiomes:igneousStone", "metadata": 0},
{"name": "UndergroundBiomes:igneousStone", "metadata": 1},
{"name": "UndergroundBiomes:igneousStone", "metadata": 2},
{"name": "UndergroundBiomes:igneousStone", "metadata": 3},
{"name": "UndergroundBiomes:igneousStone", "metadata": 4},
{"name": "UndergroundBiomes:igneousStone", "metadata": 5},
{"name": "UndergroundBiomes:igneousStone", "metadata": 6},
{"name": "UndergroundBiomes:igneousStone", "metadata": 7},
{"name": "UndergroundBiomes:metamorphicStone", "metadata": 0},
{"name": "UndergroundBiomes:metamorphicStone", "metadata": 1},
{"name": "UndergroundBiomes:metamorphicStone", "metadata": 2},
{"name": "UndergroundBiomes:metamorphicStone", "metadata": 3},
{"name": "UndergroundBiomes:metamorphicStone", "metadata": 4},
{"name": "UndergroundBiomes:metamorphicStone", "metadata": 5},
{"name": "UndergroundBiomes:metamorphicStone", "metadata": 6},
{"name": "UndergroundBiomes:metamorphicStone", "metadata": 7},
{"name": "UndergroundBiomes:sedimentaryStone", "metadata": 0},
{"name": "UndergroundBiomes:sedimentaryStone", "metadata": 1},
{"name": "UndergroundBiomes:sedimentaryStone", "metadata": 2},
{"name": "UndergroundBiomes:sedimentaryStone", "metadata": 3},
{"name": "UndergroundBiomes:sedimentaryStone", "metadata": 4},
{"name": "UndergroundBiomes:sedimentaryStone", "metadata": 5},
{"name": "UndergroundBiomes:sedimentaryStone", "metadata": 6},
{"name": "UndergroundBiomes:sedimentaryStone", "metadata": 7}
],
Second, it really helps to use WorldEdit to survey the result of ore generation. The '//distr' command is good at displaying a list, but you can also use WE to remove all the other blocks. With Forge Essentials installed you can run this server side as a batch job. I use Minecraft Server Manager on Linux, so here is the script:
Code:
SERVER=$(basename $(pwd))
msm $SERVER cmd doas TheServerOperatorLoggedIn //chunk
msm $SERVER cmd doas TheServerOperatorLoggedIn //outset 128
msm $SERVER cmd doas TheServerOperatorLoggedIn //replace water air
msm $SERVER cmd doas TheServerOperatorLoggedIn //replace lava air
msm $SERVER cmd doas TheServerOperatorLoggedIn //replace 796 air
msm $SERVER cmd doas TheServerOperatorLoggedIn //replace 856 air
msm $SERVER cmd doas TheServerOperatorLoggedIn //replace 857 air
msm $SERVER cmd doas TheServerOperatorLoggedIn //replace dirt air
msm $SERVER cmd doas TheServerOperatorLoggedIn //replace grass air
msm $SERVER cmd doas TheServerOperatorLoggedIn //replace stone air
msm $SERVER cmd doas TheServerOperatorLoggedIn //replace sand air
msm $SERVER cmd doas TheServerOperatorLoggedIn //replace sandstone air
msm $SERVER cmd doas TheServerOperatorLoggedIn //replace gravel air
msm $SERVER cmd doas TheServerOperatorLoggedIn //replace UndergroundBiomes:igneousStone air
msm $SERVER cmd doas TheServerOperatorLoggedIn //replace UndergroundBiomes:metamorphicStone air
msm $SERVER cmd doas TheServerOperatorLoggedIn //replace UndergroundBiomes:sedimentaryStone air
msm $SERVER cmd say oredit done
When done you have 17x17 chunks of empty air and ores floating!