Skip to content

Commit

Permalink
fix: Fix uncompressed coal recipe only resulting in one uncompressed …
Browse files Browse the repository at this point in the history
…coal
  • Loading branch information
BlayTheNinth committed Jul 13, 2024
1 parent f7c01c3 commit ad13d61
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 @@ -7,7 +7,7 @@
}
],
"result": {
"count": 1,
"count": 9,
"id": "excompressum:uncompressed_coal"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ public void buildRecipes(RecipeOutput exporter) {
.unlockedBy("has_iron_ingot", has(Items.IRON_INGOT))
.save(exporter);

shapeless(RecipeCategory.MISC, ModItems.uncompressedCoal)
shapeless(RecipeCategory.MISC, ModItems.uncompressedCoal, 9)
.requires(Items.COAL)
.unlockedBy("has_coal", has(Items.COAL))
.save(exporter);
Expand Down

0 comments on commit ad13d61

Please sign in to comment.