diff --git a/CHANGELOG.md b/CHANGELOG.md index 41eb470..99f8d60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Forge Recommended Versioning](https://mcforge.readthedocs.io/en/latest/conventions/versioning/). +## [1.20.4-3.1.2.1] - 2024-06-29 +### Fixed +- crafting recipe of Brick Blast Furnace used bricks instead of brick blocks (all loaders) + ## [1.20.4-3.1.2.0] - 2024-06-05 ### Added - added Roughly Enough Items (REI) support (version 14.1.727) (all loaders) diff --git a/fabric/src/main/resources/data/brickfurnace/recipes/brick_blast_furnace.json b/fabric/src/main/resources/data/brickfurnace/recipes/brick_blast_furnace.json index 5cf2539..92f52c8 100644 --- a/fabric/src/main/resources/data/brickfurnace/recipes/brick_blast_furnace.json +++ b/fabric/src/main/resources/data/brickfurnace/recipes/brick_blast_furnace.json @@ -8,7 +8,7 @@ ], "key": { "#": { - "item": "minecraft:brick" + "item": "minecraft:bricks" }, "X": { "item": "brickfurnace:brick_furnace" diff --git a/forge/src/main/resources/data/brickfurnace/recipes/brick_blast_furnace.json b/forge/src/main/resources/data/brickfurnace/recipes/brick_blast_furnace.json index bafc3ca..0a0f2a3 100644 --- a/forge/src/main/resources/data/brickfurnace/recipes/brick_blast_furnace.json +++ b/forge/src/main/resources/data/brickfurnace/recipes/brick_blast_furnace.json @@ -8,7 +8,7 @@ ], "key": { "#": { - "tag": "forge:ingots/brick" + "item": "minecraft:bricks" }, "X": { "item": "brickfurnace:brick_furnace" diff --git a/gradle.properties b/gradle.properties index e422787..e654dc7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ # Project group=de.cech12.brickfurnace -mod_version=3.1.2.0 +mod_version=3.1.2.1 mod_id=brickfurnace mod_name=Brick Furnace mod_author=Cech12 diff --git a/neoforge/src/main/resources/data/brickfurnace/recipes/brick_blast_furnace.json b/neoforge/src/main/resources/data/brickfurnace/recipes/brick_blast_furnace.json index bafc3ca..0a0f2a3 100644 --- a/neoforge/src/main/resources/data/brickfurnace/recipes/brick_blast_furnace.json +++ b/neoforge/src/main/resources/data/brickfurnace/recipes/brick_blast_furnace.json @@ -8,7 +8,7 @@ ], "key": { "#": { - "tag": "forge:ingots/brick" + "item": "minecraft:bricks" }, "X": { "item": "brickfurnace:brick_furnace"