Skip to content

Commit 9814d41

Browse files
authored
Remove Extruder Mold (Long Rod) (#3190)
Co-authored-by: GirixK <GirixK@users.noreply.github.com>
1 parent 7521056 commit 9814d41

6 files changed

Lines changed: 0 additions & 35 deletions

File tree

src/generated/resources/assets/gtceu/lang/en_ud.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4007,7 +4007,6 @@
40074007
"item.gtceu.lime_dye_spray_can": ")ǝɯıꞀ( uɐƆ ʎɐɹdS",
40084008
"item.gtceu.lime_glass_lens": ")ǝɯıꞀ( suǝꞀ ssɐן⅁",
40094009
"item.gtceu.liquid_fuel_jetpack": "ʞɔɐdʇǝſ ןǝnℲ pınbıꞀ",
4010-
"item.gtceu.long_rod_extruder_mold": ")poᴚ buoꞀ( pןoW ɹǝpnɹʇxƎ",
40114010
"item.gtceu.long_treated_wood_rod": "ʞɔıʇS pooM pǝʇɐǝɹ⟘ buoꞀ",
40124011
"item.gtceu.long_wood_rod": "ʞɔıʇS pooM buoꞀ",
40134012
"item.gtceu.lpic_chip": "dıɥƆ ƆIԀꞀ",

src/generated/resources/assets/gtceu/lang/en_us.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4007,7 +4007,6 @@
40074007
"item.gtceu.lime_dye_spray_can": "Spray Can (Lime)",
40084008
"item.gtceu.lime_glass_lens": "Glass Lens (Lime)",
40094009
"item.gtceu.liquid_fuel_jetpack": "Liquid Fuel Jetpack",
4010-
"item.gtceu.long_rod_extruder_mold": "Extruder Mold (Long Rod)",
40114010
"item.gtceu.long_treated_wood_rod": "Long Treated Wood Stick",
40124011
"item.gtceu.long_wood_rod": "Long Wood Stick",
40134012
"item.gtceu.lpic_chip": "LPIC Chip",

src/generated/resources/assets/gtceu/models/item/long_rod_extruder_mold.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/main/java/com/gregtechceu/gtceu/common/data/GTItems.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ public class GTItems {
210210
public static ItemEntry<Item> SHAPE_EXTRUDER_BOTTLE;
211211
public static ItemEntry<Item> SHAPE_EXTRUDER_FOIL;
212212
public static ItemEntry<Item> SHAPE_EXTRUDER_GEAR_SMALL;
213-
public static ItemEntry<Item> SHAPE_EXTRUDER_ROD_LONG;
214213
public static ItemEntry<Item> SHAPE_EXTRUDER_ROTOR;
215214

216215
static {
@@ -283,10 +282,6 @@ public class GTItems {
283282
.lang("Extruder Mold (Small Gear)")
284283
.onRegister(materialInfo(new ItemMaterialInfo(new MaterialStack(GTMaterials.Steel, GTValues.M * 4))))
285284
.register();
286-
SHAPE_EXTRUDERS[25] = SHAPE_EXTRUDER_ROD_LONG = REGISTRATE.item("long_rod_extruder_mold", Item::new)
287-
.lang("Extruder Mold (Long Rod)")
288-
.onRegister(materialInfo(new ItemMaterialInfo(new MaterialStack(GTMaterials.Steel, GTValues.M * 4))))
289-
.register();
290285
SHAPE_EXTRUDERS[26] = SHAPE_EXTRUDER_ROTOR = REGISTRATE.item("rotor_extruder_mold", Item::new)
291286
.lang("Extruder Mold (Rotor)")
292287
.onRegister(materialInfo(new ItemMaterialInfo(new MaterialStack(GTMaterials.Steel, GTValues.M * 4))))

src/main/java/com/gregtechceu/gtceu/data/recipe/generated/PartsRecipeHandler.java

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -569,26 +569,6 @@ private static void processLongRod(@NotNull Consumer<FinishedRecipe> provider, @
569569
.duration((int) Math.max(material.getMass(), 1L))
570570
.EUt(16)
571571
.save(provider);
572-
573-
if (material.hasProperty(PropertyKey.INGOT)) {
574-
EXTRUDER_RECIPES.recipeBuilder("extrude_" + material.getName() + "_ingot_to_long_rod")
575-
.inputItems(ingot, material)
576-
.notConsumable(GTItems.SHAPE_EXTRUDER_ROD_LONG)
577-
.outputItems(stack)
578-
.duration((int) Math.max(material.getMass(), 1L))
579-
.EUt(64)
580-
.save(provider);
581-
582-
if (material.hasFlag(NO_SMASHING)) {
583-
EXTRUDER_RECIPES.recipeBuilder("extrude_" + material.getName() + "_dust_to_long_rod")
584-
.inputItems(dust, material)
585-
.notConsumable(GTItems.SHAPE_EXTRUDER_ROD_LONG)
586-
.outputItems(stack)
587-
.duration((int) Math.max(material.getMass(), 1L))
588-
.EUt(64)
589-
.save(provider);
590-
}
591-
}
592572
}
593573

594574
private static void processTurbine(@NotNull Consumer<FinishedRecipe> provider, @NotNull Material material) {

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,6 @@ public static void init(Consumer<FinishedRecipe> provider) {
200200
" S ", " ", 'S', SHAPE_EXTRUDER_ROD.asStack());
201201
VanillaRecipeHelper.addStrictShapedRecipe(provider, "shape_extruder_rod", SHAPE_EXTRUDER_ROD.asStack(), " ",
202202
" Sx", " ", 'S', SHAPE_EMPTY.asStack());
203-
VanillaRecipeHelper.addStrictShapedRecipe(provider, "shape_extruder_rod_long",
204-
SHAPE_EXTRUDER_ROD_LONG.asStack(), " x", " S ", " ", 'S', SHAPE_EXTRUDER_ROD.asStack());
205203
VanillaRecipeHelper.addStrictShapedRecipe(provider, "shape_extruder_plate", SHAPE_EXTRUDER_PLATE.asStack(),
206204
"x ", " S ", " ", 'S', SHAPE_EXTRUDER_FOIL.asStack());
207205
VanillaRecipeHelper.addStrictShapedRecipe(provider, "shape_extruder_gear_small",

0 commit comments

Comments
 (0)