Version 2.1.6 - Bug fixes

- Fixed paxel recipe: now requires 1 pickaxe + 2 sticks (instead of 3 pickaxes)
- Fixed silk touch on Concentrated Diamond Ore: now drops vanilla diamond_ore
- Fixed Copper High Ore sound: changed from GRAVEL to STONE

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
feldenr
2026-01-07 17:09:36 +01:00
parent 93cfa0dfe3
commit 140b1f9111
62 changed files with 180 additions and 39 deletions
@@ -0,0 +1,8 @@
{
"type": "forge:add_features",
"biomes": {
"type": "forge:any"
},
"features": "custom_ore_gen:sharddiamondblockore",
"step": "underground_ores"
}
@@ -48,7 +48,7 @@
"entries": [
{
"type": "minecraft:item",
"name": "custom_ore_gen:concentrateddiamondore",
"name": "minecraft:diamond_ore",
"weight": 1,
"conditions": [
{
@@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"pattern": [
" ",
"aaa",
"a a"
],
"key": {
"a": {
"item": "custom_ore_gen:diamondshard"
}
},
"result": {
"item": "custom_ore_gen:sharddiamondboots",
"count": 1
}
}
@@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"pattern": [
"aDa",
"aaa",
"aaa"
],
"key": {
"a": {
"item": "custom_ore_gen:diamondshard"
},
"D": {
"item": "minecraft:diamond"
}
},
"result": {
"item": "custom_ore_gen:sharddiamondchestplate",
"count": 1
}
}
@@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"pattern": [
"aaa",
"a a",
" "
],
"key": {
"a": {
"item": "custom_ore_gen:diamondshard"
}
},
"result": {
"item": "custom_ore_gen:sharddiamondhelmet",
"count": 1
}
}
@@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"pattern": [
"aDa",
"a a",
"a a"
],
"key": {
"a": {
"item": "custom_ore_gen:diamondshard"
},
"D": {
"item": "minecraft:diamond"
}
},
"result": {
"item": "custom_ore_gen:sharddiamondleggings",
"count": 1
}
}
@@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"pattern": [
" S ",
" T ",
" T "
],
"key": {
"S": {
"item": "custom_ore_gen:sharddiamondpickaxe"
},
"T": {
"item": "minecraft:stick"
}
},
"result": {
"item": "custom_ore_gen:sharddiamondpaxel",
"count": 1
}
}