I see there is no way to disable ore gen, i tried making a datpack, which im new to with this layout
"Industrial Age The Turning Dev\saves\New World\datapacks\TfmgOres\data\createindustry\loot_tables\blocks"
inside the blocks folder i have your 3 "lead_ore.json" "nickel_ore.json" and "lithium_ore.json"
i tried changing what lead drops to "alltheores:raw_lead"
but it did not change the drop, are these hard coded or am i doing something wrong? i can confirm the datapack loads
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
],
"name": "createindustry:lead_ore"
},
{
"type": "minecraft:item",
"functions": [
{
"enchantment": "minecraft:fortune",
"formula": "minecraft:ore_drops",
"function": "minecraft:apply_bonus"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "alltheores:raw_lead"
}
]
}
],
"rolls": 1.0
}
]
}
I see there is no way to disable ore gen, i tried making a datpack, which im new to with this layout "Industrial Age The Turning Dev\saves\New World\datapacks\TfmgOres\data\createindustry\loot_tables\blocks"
inside the blocks folder i have your 3 "lead_ore.json" "nickel_ore.json" and "lithium_ore.json" i tried changing what lead drops to "alltheores:raw_lead" but it did not change the drop, are these hard coded or am i doing something wrong? i can confirm the datapack loads { "type": "minecraft:block", "pools": [ { "bonus_rolls": 0.0, "entries": [ { "type": "minecraft:alternatives", "children": [ { "type": "minecraft:item", "conditions": [ { "condition": "minecraft:match_tool", "predicate": { "enchantments": [ { "enchantment": "minecraft:silk_touch", "levels": { "min": 1 } } ] } } ], "name": "createindustry:lead_ore" }, { "type": "minecraft:item", "functions": [ { "enchantment": "minecraft:fortune", "formula": "minecraft:ore_drops", "function": "minecraft:apply_bonus" }, { "function": "minecraft:explosion_decay" } ], "name": "alltheores:raw_lead" } ] } ], "rolls": 1.0 } ] }