Funwayguy / OreExcavation

Ore Excavation issue tracker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[1.19.2] Cannot seperate types of sone

bghyt opened this issue · comments

As mentioned in the title I am wanting Andersite, Stone, Diorite to be mined seperately yet when ever I mine one it mine's the others, so far I have tried, un grouping the block groups so each stone has it's own entry and out right deleting every kind of stone from the config, each time restarting my client.

{ "blockGroups": [ ], "strictSubtypes": [ "tag:minecraft:crops", "minecraft:beetroots", "minecraft:carrots", "minecraft:potatoes", "minecraft:wheat", "minecraft:melon_stem", "minecraft:pumpkin_stem" ], "gamestages": { "examplemod:example_block1": "example_stage1", "examplemod:example_block2": "example_stage2" } }

Is where I tried to remove stone in the config and below is where I just ungrouped it, I am playing on a server but I am unsure if this affects it

{
"blockGroups": [
[
"tag:minecraft:leaves"
],
[
"tag:minecraft:dirt_like"
],
[
"tag:minecraft:logs"
],
[
"tag:minecraft:flower_pots"
],
[
"minecraft:stone",
"minecraft:infested_stone"
],
[
"minecraft:granite"
],
[
"minecraft:diorite"
],
[
"minecraft:andesite"
],
[
"minecraft:cobblestone",
"minecraft:infested_cobblestone"
],
[
"minecraft:stone_bricks",
"minecraft:infested_stone_bricks"
],
[
"minecraft:cracked_stone_bricks",
"minecraft:infested_cracked_stone_bricks"
],
[
"minecraft:mossy_stone_bricks",
"minecraft:infested_mossy_stone_bricks"
],
[
"minecraft:chiseled_stone_bricks",
"minecraft:infested_chiseled_stone_bricks"
]
],
"strictSubtypes": [
"tag:minecraft:crops",
"minecraft:beetroots",
"minecraft:carrots",
"minecraft:potatoes",
"minecraft:wheat",
"minecraft:melon_stem",
"minecraft:pumpkin_stem"
],
"gamestages": {
"examplemod:example_block1": "example_stage1",
"examplemod:example_block2": "example_stage2"
}
}