Skip to content

Commit 94ad503

Browse files
authored
Delete unused steam machines (#309)
1 parent 7c2bbdf commit 94ad503

File tree

11 files changed

+10
-394
lines changed

11 files changed

+10
-394
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
# v2.4.2
2+
- Delete unused steam machines.
3+
4+
* * *
5+
16
# v2.4.1
2-
- A recipe for processing FluixAlloy Molten in AlloyBlastFurnace into Ingot using Mold has been added
7+
- A recipe for processing FluixAlloy Molten in AlloyBlastFurnace into Ingot using Mold has been added.
38

49
* * *
510

src/main/java/gtexpert/api/recipes/GTERecipeMaps.java

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -37,26 +37,4 @@ public class GTERecipeMaps {
3737
.setSlotOverlay(true, true, GuiTextures.CENTRIFUGE_OVERLAY)
3838
.setProgressBar(GuiTextures.PROGRESS_BAR_GAS_COLLECTOR, ProgressWidget.MoveType.HORIZONTAL)
3939
.setSound(GTSoundEvents.COOLING);
40-
41-
@ZenProperty
42-
public static final RecipeMap<SimpleRecipeBuilder> STEAM_MIXER_RECIPES = new RecipeMap<>(
43-
"steam_mixer", 6, 2, 0, 0, new SimpleRecipeBuilder(), false)
44-
.setSlotOverlay(false, false, GuiTextures.DUST_OVERLAY)
45-
.setSlotOverlay(true, false, GuiTextures.DUST_OVERLAY)
46-
.setProgressBar(GuiTextures.PROGRESS_BAR_MIXER, ProgressWidget.MoveType.CIRCULAR)
47-
.setSound(GTSoundEvents.MIXER);
48-
49-
@ZenProperty
50-
public static final RecipeMap<SimpleRecipeBuilder> STEAM_ASSEMBLER_RECIPES = new RecipeMap<>(
51-
"steam_assembler", 9, 2, 0, 0, new SimpleRecipeBuilder(), false)
52-
.setSlotOverlay(false, false, GuiTextures.CIRCUIT_OVERLAY)
53-
.setProgressBar(GuiTextures.PROGRESS_BAR_CIRCUIT, ProgressWidget.MoveType.HORIZONTAL)
54-
.setSound(GTSoundEvents.ASSEMBLER);
55-
56-
@ZenProperty
57-
public static final RecipeMap<SimpleRecipeBuilder> STEAM_CIRCUIT_ASSEMBLER_RECIPES = new RecipeMap<>(
58-
"steam_circuit_assembler", 6, 2, 0, 0, new SimpleRecipeBuilder(), false)
59-
.setSlotOverlay(false, false, GuiTextures.CIRCUIT_OVERLAY)
60-
.setProgressBar(GuiTextures.PROGRESS_BAR_CIRCUIT_ASSEMBLER, ProgressWidget.MoveType.HORIZONTAL)
61-
.setSound(GTSoundEvents.ASSEMBLER);
6240
}

src/main/java/gtexpert/common/GTEConfigHolder.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,6 @@ public static class ModpackFlag {
3838
"Default: easy" })
3939
public String componentsRecipeType = "easy";
4040

41-
@Config.Comment({
42-
"Enable the new steam machines.",
43-
"Steam Mixer, Steam Assembler, Steam Circuit Assembler",
44-
"Default: false" })
45-
public boolean steamNewMachine = false;
46-
47-
@Config.Comment({
48-
"Recipe Type. Options: none (no generated recipes), easy (2x2 crafting(WIP)), normal (3x3 crafting).",
49-
"The steamNewMachine must also be enabled.", "Default: normal" })
50-
public String steamRecipeType = "normal";
51-
5241
@Config.Comment({
5342
"1. When enabled, the following recipes will be changed to Peaceful difficulty: ",
5443
"Nether Star Dust, Skeleton Skull, Wither Skeleton Skull, Zombie Head, Creeper Head, Enderman Head",

src/main/java/gtexpert/common/metatileentities/GTEMetaTileEntities.java

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,10 @@
1313

1414
import gtexpert.common.GTEConfigHolder;
1515
import gtexpert.common.metatileentities.multi.*;
16-
import gtexpert.common.metatileentities.single.SteamAssembler;
17-
import gtexpert.common.metatileentities.single.SteamCircuitAssembler;
18-
import gtexpert.common.metatileentities.single.SteamMixer;
1916

2017
public class GTEMetaTileEntities {
2118

2219
// Single Machine
23-
public static SteamMixer STEAM_MIXER_BRONZE;
24-
public static SteamMixer STEAM_MIXER_STEEL;
25-
public static SteamAssembler STEAM_ASSEMBLER_BRONZE;
26-
public static SteamAssembler STEAM_ASSEMBLER_STEEL;
27-
public static SteamCircuitAssembler STEAM_CIRCUIT_ASSEMBLER_BRONZE;
28-
public static SteamCircuitAssembler STEAM_CIRCUIT_ASSEMBLER_STEEL;
2920

3021
// Multi Machine
3122
public static MetaTileEntityLargeCrackingUnit LARGE_CRACKER;
@@ -35,21 +26,7 @@ public class GTEMetaTileEntities {
3526

3627
public static void init() {
3728
// Single Machine
38-
// Steam machine 11004~11009
39-
if (GTEConfigHolder.gteFlag.steamNewMachine) {
40-
STEAM_MIXER_BRONZE = registerMetaTileEntity(11004,
41-
new SteamMixer(gteId("steam_mixer_bronze"), false));
42-
STEAM_MIXER_STEEL = registerMetaTileEntity(11005,
43-
new SteamMixer(gteId("steam_mixer_steel"), true));
44-
STEAM_ASSEMBLER_BRONZE = registerMetaTileEntity(11006,
45-
new SteamAssembler(gteId("steam_assembler_bronze"), false));
46-
STEAM_ASSEMBLER_STEEL = registerMetaTileEntity(11007,
47-
new SteamAssembler(gteId("steam_assembler_steel"), true));
48-
STEAM_CIRCUIT_ASSEMBLER_BRONZE = registerMetaTileEntity(11008,
49-
new SteamCircuitAssembler(gteId("steam_circuit_assembler_bronze"), false));
50-
STEAM_CIRCUIT_ASSEMBLER_STEEL = registerMetaTileEntity(11009,
51-
new SteamCircuitAssembler(gteId("steam_circuit_assembler_steel"), true));
52-
}
29+
// Free: 11004~11999
5330

5431
// Multi Machine
5532
// Free: 12000~12001

src/main/java/gtexpert/common/metatileentities/single/SteamAssembler.java

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

src/main/java/gtexpert/common/metatileentities/single/SteamCircuitAssembler.java

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

src/main/java/gtexpert/common/metatileentities/single/SteamMixer.java

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

src/main/java/gtexpert/integration/ae/recipes/AEItemsRecipe.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -542,10 +542,10 @@ public static void init() {
542542
// Formation Core
543543
ModHandler.removeRecipeByName(Mods.AppliedEnergistics2.getResource("materials/formationcore"));
544544
ModHandler.addShapedRecipe(true, "formation_core",
545-
Mods.AppliedEnergistics2.getItem("material", 2, 43),
545+
Mods.AppliedEnergistics2.getItem("material", 1, 43),
546546
"SES", "LQL", "SES",
547547
'S', OreDictUnifier.get(stick, tierMaterials[GTEValues.ae2VoltageTier - 1]),
548-
'Q', "gemMaterials.NetherQuartz",
548+
'Q', "gemNetherQuartz",
549549
'E', Mods.AppliedEnergistics2.getItem("material", 1, 24),
550550
'L', Mods.AppliedEnergistics2.getItem("material", 1, 22));
551551
ModHandler.addShapedRecipe("formation_core_pure",
@@ -568,7 +568,7 @@ public static void init() {
568568
// Annihilation Core
569569
ModHandler.removeRecipeByName(Mods.AppliedEnergistics2.getResource("materials/annihilationcore"));
570570
ModHandler.addShapedRecipe(true, "annihilation_core",
571-
Mods.AppliedEnergistics2.getItem("material", 2, 44),
571+
Mods.AppliedEnergistics2.getItem("material", 1, 44),
572572
"SES", "CQC", "SES",
573573
'S', OreDictUnifier.get(stick, tierMaterials[GTEValues.ae2VoltageTier - 1]),
574574
'Q', "gemCertusQuartz",

0 commit comments

Comments
 (0)