[1.15.2] indicators seem to be breaking my ores.
Mizhok opened this issue ยท 2 comments
Whenever I add an indicator to my veins, they seem to break.
I try doing /findveins and they don't pop up in the suggestions.
Am I just doing it wrong?
`{
"type": "cone",
"rarity": 2000,
"count":1,
"horizontal_size": 10,
"vertical_size": 10,
"min_y": 0,
"max_y": 50,
"ore": "minecraft:iron_ore",
"stone": "minecraft:stone",
"density": 1000
"indicator":"minecraft:poppy"
}`
Yes, you are using them incorrectly which is very likely causing the vein to fail in parsing:
- Check your log for errors - if a vein JSON is invalid there will be a message explaining what errored, and pointing to the file in question.
- For indicators specifically, the
indicator
tag must be an object which contains several entries. See the Documentation on Indicators for more information, specifically this example:
{
"type": "cluster",
"stone": "minecraft:stone",
"ore": "minecraft:iron_ore",
"indicator": {
"blocks": "minecraft:red_flower",
"max_depth": 20
}
}