remove stick

This commit is contained in:
endigma 2022-05-01 19:13:01 -03:00
parent 136ef46471
commit 3cb153af98
Signed by: endigma
GPG Key ID: 915867AD1D297D9F
3 changed files with 8 additions and 1 deletions

View File

@ -1116,3 +1116,7 @@ metafile = true
[[files]] [[files]]
file = "resourcepacks/Better-Leaves-6.2-1.13+.zip" file = "resourcepacks/Better-Leaves-6.2-1.13+.zip"
hash = "583ba4e4328a27b7c81353edf9aa1943143d12780f41316038aa7071a744865f" hash = "583ba4e4328a27b7c81353edf9aa1943143d12780f41316038aa7071a744865f"
[[files]]
file = "scripts/remove-unbalanced.js"
hash = "0fcb62e8c988ab0ca6e661a1e84260d9141df5bc19728e2593952d37ff05d6ac"

View File

@ -6,7 +6,7 @@ pack-format = "packwiz:1.0.0"
[index] [index]
file = "index.toml" file = "index.toml"
hash-format = "sha256" hash-format = "sha256"
hash = "8e58af49c8531c30df46ccda6d80381db38ccde46c8a8dc0296f2eabc923656b" hash = "00c0a43762f6e9d297a4f5e7e900a50e97e19ea6ab4b975aa7efd1af338617c9"
[versions] [versions]
fabric = "0.13.3" fabric = "0.13.3"

View File

@ -0,0 +1,3 @@
onEvent('recipes', event => {
event.remove({output: 'minecraft:stick'})
})