I have added 2 structures successfully to my datapack already however for start height I used an absolute value. I am trying to provide a range of values for it generate in from y= -60 to y=20. I can get the structure to spawn with absolute values no problem however when I try to set up "above_bottom" I can get it to validate my pack and even select a place for my structure to the point that I can tp to it. When I get there though I find that my structure did not generate. This is what I have so far:
I have added 2 structures successfully to my datapack already however for start height I used an absolute value. I am trying to provide a range of values for it generate in from y= -60 to y=20. I can get the structure to spawn with absolute values no problem however when I try to set up "above_bottom" I can get it to validate my pack and even select a place for my structure to the point that I can tp to it. When I get there though I find that my structure did not generate. This is what I have so far:
{
"biomes": [
"minecraft:lush_caves",
"alexscaves:primordial_caves"
],
"adapt_noise": false,
"spawn_overrides": {},
"type": "minecraft:jigsaw",
"start_pool": "journeymen:amethyst_dungeon/amethyst_dungeon_structure",
"size": 7,
"step": "surface_structures",
"start_height": {
"above_bottom": -60,
"type": "uniform",
"min_inclusive": -60,
"max_inclusive": 20
},
"project_start_to_height_map": "WOLRD_SURFACE_WG",
"max_distance_from_center": 116,
"terrain_adaptation": "beard_thin",
"use_expansion_hack": false
}
I have found my answer and figured I would share the solution with all so any weary internet traveler may see the solution to this problem:
{
"biomes": [
"minecraft:lush_caves",
"alexscaves:primordial_caves"
],
"adapt_noise": false,
"spawn_overrides": {},
"type": "minecraft:jigsaw",
"start_pool": "journeymen:amethyst_dungeon/amethyst_dungeon_structure",
"size": 7,
"step": "surface_structures",
"start_height": {
"type": "minecraft:uniform",
"max_inclusive": {
"absolute": 40
},
"min_inclusive": {
"absolute": -50
}
},
"project_start_to_heightmap": "WORLD_SURFACE_WG",
"max_distance_from_center": 116,
"terrain_adaptation": "beard_thin",
"use_expansion_hack": false
}