Skip to content

Commit

Permalink
Dirt Paths drop now only drop when silk touched
Browse files Browse the repository at this point in the history
Fixes #10
  • Loading branch information
cassiancc committed Dec 28, 2024
1 parent 8722b87 commit 2cb36cc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Andesite Bricks now have correct shortcut recipes.
- Resource blocks now have correct shortcut recipes.
- Aether compat blocks now have correct models.
- Dirt Paths now only drop when Silk Touched.

## [0.15.8] - 2024-12-26

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
}
]
]
}
}
}
],
Expand All @@ -40,4 +42,5 @@
],
"rolls": 1.0
}
]}
]
}

0 comments on commit 2cb36cc

Please sign in to comment.