Update fabric/src/main/java/dev/sillyangel/nuggetmod/fabric/datagen/ModRecipeProvider.java
Some checks failed
Build and Artifact / build (pull_request) Failing after 1m7s
Some checks failed
Build and Artifact / build (pull_request) Failing after 1m7s
This commit is contained in:
@@ -50,6 +50,18 @@ public class ModRecipeProvider extends FabricRecipeProvider {
|
||||
.unlockedBy(getHasName(ModBlocks.RAW_NUGGET_BLOCK.get()), has(ModBlocks.RAW_NUGGET_BLOCK.get()))
|
||||
.save(recipeExporter);
|
||||
|
||||
// cake is a lie
|
||||
shaped(RecipeCategory.FOOD, ModItems.NUGGET_CAKE.get())
|
||||
.pattern("MMM")
|
||||
.pattern("SES")
|
||||
.pattern("WWW")
|
||||
.define('M', Items.NUGGET_BLOCK)
|
||||
.define('S', Items.SUGAR)
|
||||
.define('E', Items.RAW_NUGGET)
|
||||
.define('W', ModItems.NUGGET)
|
||||
.unlockedBy(getHasName(ModItems.NUGGET.get()), has(ModItems.NUGGET.get()))
|
||||
.save(output);
|
||||
|
||||
// TOOLS
|
||||
shaped(RecipeCategory.COMBAT, ModItems.NUGGET_SWORD.get())
|
||||
.pattern(" N ")
|
||||
|
||||
Reference in New Issue
Block a user