File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed
src/main/java/com/gregtechceu/gtceu/data/recipe/misc Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 33import com .gregtechceu .gtceu .api .data .chemical .material .MarkerMaterials .Color ;
44import com .gregtechceu .gtceu .api .data .chemical .material .stack .MaterialEntry ;
55import com .gregtechceu .gtceu .api .machine .multiblock .CleanroomType ;
6+ import com .gregtechceu .gtceu .common .data .GTRecipeCategories ;
67import com .gregtechceu .gtceu .config .ConfigHolder ;
78import com .gregtechceu .gtceu .data .recipe .CustomTags ;
89import com .gregtechceu .gtceu .data .recipe .VanillaRecipeHelper ;
@@ -338,6 +339,7 @@ private static void componentRecipes(Consumer<FinishedRecipe> provider) {
338339 .inputItems (dust , Glass )
339340 .notConsumable (SHAPE_MOLD_BALL )
340341 .outputItems (GLASS_TUBE )
342+ .category (GTRecipeCategories .INGOT_MOLDING )
341343 .duration (160 ).EUt (16 ).save (provider );
342344
343345 FLUID_SOLIDFICATION_RECIPES .recipeBuilder ("solidify_glass_tube" )
Original file line number Diff line number Diff line change @@ -401,6 +401,7 @@ public static void init(Consumer<FinishedRecipe> provider) {
401401 .inputItems (dust , Glass , 2 )
402402 .notConsumable (SHAPE_MOLD_PLATE )
403403 .outputItems (plate , Glass )
404+ .category (GTRecipeCategories .INGOT_MOLDING )
404405 .duration (40 ).EUt (6 ).save (provider );
405406
406407 // Dyed Lens Recipes
Original file line number Diff line number Diff line change @@ -225,6 +225,7 @@ private static void glassRecipes(Consumer<FinishedRecipe> provider) {
225225 .inputItems (dust , Glass )
226226 .notConsumable (SHAPE_MOLD_BOTTLE )
227227 .outputItems (new ItemStack (Items .GLASS_BOTTLE ))
228+ .category (GTRecipeCategories .INGOT_MOLDING )
228229 .addMaterialInfo (true )
229230 .save (provider );
230231
@@ -250,6 +251,7 @@ private static void glassRecipes(Consumer<FinishedRecipe> provider) {
250251 .inputItems (dust , Glass )
251252 .notConsumable (SHAPE_MOLD_BLOCK )
252253 .outputItems (new ItemStack (Blocks .GLASS , 1 ))
254+ .category (GTRecipeCategories .INGOT_MOLDING )
253255 .save (provider );
254256
255257 CUTTER_RECIPES .recipeBuilder ("cut_glass_block_to_plate" ).duration (50 ).EUt (VA [ULV ])
You can’t perform that action at this time.
0 commit comments