![Spatial Harvesters [FABRIC]](https://media.forgecdn.net/avatars/thumbnails/333/332/256/256/637465924239759138.png)
Ore harvester does not provide glowstone?
LuciusV opened this issue ยท 4 comments
Unlike another similar mods (Env tech, IE laser drill...) seems there is no glowstone from spatial harvesters. Although I assume one can use custom_ore_tags in config, please make ore harverster to pull glowstone blocks :)
I'd be adding that to the default config value, which is kind of like adding it to the config file. I noticed there isn't a tag for glowstone blocks, just for the dust, so it would have to go in as a custom item, rather than a tag. I'll add it in 0.11.6, although you'll either have to add it manually or let the file regenerate for it to take effect.
custom_ore_tags = [["minecraft", "glowstone"]] does not bring it now in 0.11.5, does it require next version to work?
No, the problem is that that isn't a tag, that's an item. You'll have to add that value to the... looks through own code to find variable name ...custom_ores variable.
For example:
custom_ores = [["minecraft", "glowstone"]]
If you still want the other custom ores to generate, you'd need to add the " , ["minecraft", "glowstone"]," part to the existing list.
For example:
custom_ores = [["examplemod", "example_ore"], ["this_is_not_a_real_mod", "this_is_not_a_real_ore"], ["minecraft", "glowstone"]]