Skip to content

Commit

Permalink
Added netherrackMeatBalls recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
Garkatron committed Jan 12, 2025
1 parent c664f62 commit 11b7c7c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/java/deus/stanleytemperature/StanleyRecipes.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package deus.stanleytemperature;

import deus.stanleytemperature.items.StanleyItems;
import net.minecraft.core.block.Block;
import net.minecraft.core.block.Blocks;
import net.minecraft.core.item.Item;
import turniplabs.halplibe.helper.RecipeBuilder;
Expand All @@ -16,5 +17,14 @@ public static void initialize() {
.addInput('p', Blocks.PERMAFROST.asItem())
.create("StanleyRecipeIceCubes", StanleyItems.iceCubes.getDefaultStack());

RecipeBuilder.Shaped(StanleyTemperature.MOD_ID)
.setShape(
" ",
"ppp",
" ")
.addInput('p', Blocks.NETHERRACK.asItem())
.create("StanleyRecipeNetherrackMeatBalls", StanleyItems.netherrackMeatBalls.getDefaultStack());


}
}

0 comments on commit 11b7c7c

Please sign in to comment.