Skip to content

Commit

Permalink
Added Lava Ink Block Recipe
Browse files Browse the repository at this point in the history
Added Glow Ink Block Recipe
  • Loading branch information
ITLSupress committed Apr 2, 2024
1 parent f80562d commit 8d9f771
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,22 @@ public static void addBlockRecipes() {
"# ",
'#', new ItemStack(ModBlocks.foxCompanionCube, 1, 1)
});

RecipeManager.addRecipe(new ItemStack(ModBlocks.glowInkBlock, 1 ), new Object[] {
"XXX",
"XSX",
"XXX",
'X', ModItems.glowPaste,
'S', new ItemStack(Block.stone, 1)
});

RecipeManager.addRecipe(new ItemStack(ModBlocks.lavaInkBlock, 1 ), new Object[] {
"XXX",
"XSX",
"XXX",
'X', ModItems.lavaPaste,
'S', new ItemStack(Block.stone, 1)
});
}

public static void addMeatCuringRecipes() {
Expand Down

0 comments on commit 8d9f771

Please sign in to comment.