Fix slab stone cutting recipe

This commit is contained in:
Andrew-71 2024-03-07 11:07:31 +03:00
parent b4ca10b823
commit 0f80a8fc69
114 changed files with 121 additions and 114 deletions

View file

@ -205,7 +205,7 @@ public class RecipeGenerator extends FabricRecipeProvider {
.criterion(hasItem(input), conditionsFromItem(input)).offerTo(exporter);
offerStonecuttingRecipe(exporter, RecipeCategory.BUILDING_BLOCKS, output_stairs, input);
offerStonecuttingRecipe(exporter, RecipeCategory.BUILDING_BLOCKS, output_slab, input);
offerStonecuttingRecipe(exporter, RecipeCategory.BUILDING_BLOCKS, output_slab, input, 2);
}
@Override
@ -871,5 +871,12 @@ public class RecipeGenerator extends FabricRecipeProvider {
List.of(NSE_Blocks.GREEN_LINOLEUM.asItem(), NSE_Blocks.ORANGE_LINOLEUM.asItem(), NSE_Blocks.BLUE_LINOLEUM.asItem(),
NSE_Blocks.RED_LINOLEUM.asItem(), NSE_Blocks.GRAY_LINOLEUM.asItem(), NSE_Blocks.BROWN_LINOLEUM.asItem(), NSE_Blocks.CYAN_LINOLEUM.asItem()),
"linoleum");
// Banner patterns
// ShapelessRecipeJsonBuilder.create(RecipeCategory.MISC, NSE_Items., 2)
// .input(Items.BRICKS).input(NSE_Blocks.GREEN_BRICKS)
// .criterion(hasItem(NSE_Blocks.GREEN_BRICKS), conditionsFromItem(NSE_Blocks.GREEN_BRICKS))
// .criterion(hasItem(Items.BRICKS), conditionsFromItem(Items.BRICKS))
// .offerTo(exporter);
}
}