Skip to content

Commit

Permalink
Align light detecting fixture recipe with new quartz fixture recipe (…
Browse files Browse the repository at this point in the history
…using cable anchor instead of iron ingot)
  • Loading branch information
shartte committed Mar 19, 2024
1 parent c056898 commit fcf8f91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"tag": "ae2:all_nether_quartz"
},
"b": {
"item": "minecraft:iron_ingot"
"item": "ae2:cable_anchor"
}
},
"pattern": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public void buildRecipes(RecipeOutput consumer) {
ShapedRecipeBuilder.shaped(RecipeCategory.MISC, AEBlocks.LIGHT_DETECTOR)
.pattern("ab")
.define('a', ConventionTags.ALL_NETHER_QUARTZ)
.define('b', Items.IRON_INGOT)
.define('b', AEParts.CABLE_ANCHOR)
.unlockedBy("has_nether_quartz", has(ConventionTags.ALL_NETHER_QUARTZ))
.unlockedBy("has_iron_ingot", has(Items.IRON_INGOT))
.save(consumer, AppEng.makeId("decorative/light_detector"));
Expand Down

0 comments on commit fcf8f91

Please sign in to comment.