From 5106fa0182fef70730498af3335c27ded30bedd1 Mon Sep 17 00:00:00 2001 From: matthewperiut Date: Tue, 18 Jun 2024 14:31:10 -0400 Subject: [PATCH] fix uncraftable chisel --- .../data/chisel/{recipes => recipe}/chisel.json | 12 +++++++----- gradle.properties | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) rename common/src/main/resources/data/chisel/{recipes => recipe}/chisel.json (76%) diff --git a/common/src/main/resources/data/chisel/recipes/chisel.json b/common/src/main/resources/data/chisel/recipe/chisel.json similarity index 76% rename from common/src/main/resources/data/chisel/recipes/chisel.json rename to common/src/main/resources/data/chisel/recipe/chisel.json index 2f4935b8..fcc90164 100644 --- a/common/src/main/resources/data/chisel/recipes/chisel.json +++ b/common/src/main/resources/data/chisel/recipe/chisel.json @@ -1,9 +1,6 @@ { "type": "minecraft:crafting_shaped", - "pattern": [ - " #", - "S " - ], + "category": "equipment", "key": { "#": { "item": "minecraft:iron_ingot" @@ -12,7 +9,12 @@ "item": "minecraft:stick" } }, + "pattern": [ + " #", + "S " + ], "result": { - "item": "chisel:chisel" + "count": 1, + "id": "chisel:chisel" } } \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 7b79b94e..af005988 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx2048M minecraft_version=1.21 enabled_platforms=fabric,neoforge -mod_version = 1.7.2 +mod_version = 1.7.3 maven_group = com.matthewperiut archives_base_name = chisel