Silktouch does not work on Glass Blocks/Panes from the Connected Glass mod
NielsPilgaard opened this issue ยท 1 comments
Using Silktouch enchanted items does not retrieve the broken glass blocks/panes added by the Connected Glass mod - All the blocks are missing loot tables. They should be similar to this one, snagged from the Minecraft datapack:
path for the json below is data/minecraft/loot_tables/blocks/glass.json
in the Minecraft 1.15.2 jar
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:glass"
}
],
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
]
}
]
}