Skip to content

Commit fcac26c

Browse files
committed
Fixed no crucible controller recipe
1 parent c650fd6 commit fcac26c

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# 0.1.3
2-
- Fixed no casting recipes
2+
- Fixed no Controller recipe
3+
- Why am I like this?

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ loader_version_range=[4,)
2323

2424
## Mod Properties
2525
mod_license=GPL-3.0
26-
mod_version=0.1.3
26+
mod_version=0.1.4
2727
mod_group_id=dev.quarris.fireandflames
2828
mod_authors=Quarris
2929
mod_description=

src/main/java/dev/quarris/fireandflames/datagen/server/RecipesGen.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,14 @@ public static void shapedRecipes(RecipeOutput pOutput) {
140140
.unlockedBy("has_glass", has(Tags.Items.GLASS_BLOCKS))
141141
.save(pOutput);
142142

143+
ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, BlockSetup.CRUCIBLE_CONTROLLER.get())
144+
.pattern("BBB")
145+
.pattern("B B")
146+
.pattern("BBB")
147+
.define('B', ItemSetup.FIRE_BRICK.get())
148+
.unlockedBy("has_fire_brick", has(ItemSetup.FIRE_BRICK.get()))
149+
.save(pOutput);
150+
143151
ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, BlockSetup.CRUCIBLE_DRAIN.get())
144152
.pattern("B B")
145153
.pattern("B B")

0 commit comments

Comments
 (0)