Merge pull request #3 from dragonruler1000/DEV

Fixed texture issues with Dust Block and added recipe for turning block of dust into dust.
This commit is contained in:
dragonruler1000 2025-05-11 19:34:02 -05:00 committed by GitHub
commit 72e67ac0ad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 1 deletions

View file

@ -1,5 +1,5 @@
{
"variants": {
"": {"model": "hdm_mod:blocks/block_of_dust" }
"": {"model": "hdm_mod:block/block_of_dust" }
}
}

View file

@ -0,0 +1,11 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "hdm_mod:block_of_dust"
}
],
"result": {
"item": "hdm_mod:dust"
}
}