From b956947e28bc743236307dcb97db28399915713e Mon Sep 17 00:00:00 2001 From: dragonruler1000 Date: Sun, 11 May 2025 19:32:13 -0500 Subject: [PATCH] Fixed texture issues with Dust Block and added recipe for turning block of dust into dust. --- .../assets/hdm_mod/blockstates/block_of_dust.json | 2 +- src/main/resources/data/hdm_mod/recipies/dust.json | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 src/main/resources/data/hdm_mod/recipies/dust.json diff --git a/src/main/resources/assets/hdm_mod/blockstates/block_of_dust.json b/src/main/resources/assets/hdm_mod/blockstates/block_of_dust.json index a48f3bb..e693a6d 100644 --- a/src/main/resources/assets/hdm_mod/blockstates/block_of_dust.json +++ b/src/main/resources/assets/hdm_mod/blockstates/block_of_dust.json @@ -1,5 +1,5 @@ { "variants": { - "": {"model": "hdm_mod:blocks/block_of_dust" } + "": {"model": "hdm_mod:block/block_of_dust" } } } \ No newline at end of file diff --git a/src/main/resources/data/hdm_mod/recipies/dust.json b/src/main/resources/data/hdm_mod/recipies/dust.json new file mode 100644 index 0000000..50a12e2 --- /dev/null +++ b/src/main/resources/data/hdm_mod/recipies/dust.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "hdm_mod:block_of_dust" + } + ], + "result": { + "item": "hdm_mod:dust" + } +} \ No newline at end of file