Skip to content

Commit 2f3a6a1

Browse files
authored
Give three alloy smelter glass recipes the right category (GregTechCEu#4497)
1 parent 1cbd9d6 commit 2f3a6a1

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

src/main/java/com/gregtechceu/gtceu/data/recipe/misc/CircuitRecipes.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import com.gregtechceu.gtceu.api.data.chemical.material.MarkerMaterials.Color;
44
import com.gregtechceu.gtceu.api.data.chemical.material.stack.MaterialEntry;
55
import com.gregtechceu.gtceu.api.machine.multiblock.CleanroomType;
6+
import com.gregtechceu.gtceu.common.data.GTRecipeCategories;
67
import com.gregtechceu.gtceu.config.ConfigHolder;
78
import com.gregtechceu.gtceu.data.recipe.CustomTags;
89
import 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")

src/main/java/com/gregtechceu/gtceu/data/recipe/misc/MiscRecipeLoader.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

src/main/java/com/gregtechceu/gtceu/data/recipe/misc/VanillaStandardRecipes.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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])

0 commit comments

Comments
 (0)