Realistic Ore Veins

Realistic Ore Veins

310k Downloads

[1.15.2] indicators seem to be breaking my ores.

Mizhok opened this issue ยท 2 comments

commented

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"

}`

commented

Yes, you are using them incorrectly which is very likely causing the vein to fail in parsing:

  1. 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.
  2. 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
  }
}
commented

Thank you! If you can't tell already, I'm a klutz.