Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate Large Processing Factory #3086

Merged
merged 9 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 0 additions & 45 deletions src/main/java/gtPlusPlus/core/recipe/RecipesMachines.java
Original file line number Diff line number Diff line change
Expand Up @@ -2876,51 +2876,6 @@ private static void runModRecipes() {
GregtechItemList.Industrial_Mixer.get(1));
}

if (GTPPCore.ConfigSwitches.enableMultiblock_IndustrialMultiMachine) {
ItemStack plate = MaterialsAlloy.STABALLOY.getPlate(1);

ItemStack o_Compressor = ItemList.Machine_IV_Compressor.get(1);
ItemStack o_Lathe = ItemList.Machine_IV_Lathe.get(1);
ItemStack o_Electromagnet = ItemList.Machine_IV_Polarizer.get(1);
ItemStack o_Fermenter = ItemList.Machine_IV_Fermenter.get(1);
ItemStack o_Distillery = ItemList.Machine_IV_FluidExtractor.get(1);
ItemStack o_Extractor = ItemList.Machine_IV_Extractor.get(1);

RecipeUtils.addShapedRecipe(
plate,
CI.craftingToolHammer_Hard,
plate,
"plateStainlessSteel",
"frameGtZirconiumCarbide",
"plateStainlessSteel",
plate,
CI.craftingToolWrench,
plate,
GregtechItemList.Casing_Multi_Use.get(1));
GTValues.RA.stdBuilder()
.itemInputs(
MaterialsAlloy.STABALLOY.getPlate(4),
GTOreDictUnificator.get(OrePrefixes.plate, Materials.StainlessSteel, 2),
MaterialsAlloy.ZIRCONIUM_CARBIDE.getFrameBox(1),
GTUtility.getIntegratedCircuit(1))
.itemOutputs(GregtechItemList.Casing_Multi_Use.get(1L))
.duration(2 * SECONDS + 10 * TICKS)
.eut(16)
.addTo(assemblerRecipes);
serenibyss marked this conversation as resolved.
Show resolved Hide resolved

RecipeUtils.addShapedRecipe(
o_Compressor,
o_Lathe,
o_Electromagnet,
plate,
ItemUtils.getSimpleStack(ModBlocks.blockProjectTable),
plate,
o_Fermenter,
o_Distillery,
o_Extractor,
GregtechItemList.Industrial_MultiMachine.get(1));
}

// Drilling Platform Casings
GTValues.RA.stdBuilder()
.itemInputs(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,8 @@ public MTEHatchSolidifier(int aID, String aName, String aNameRegional, int aTier
@Override
public String[] getDescription() {
return new String[] {
"Fluid Input with Mold for " + EnumChatFormatting.YELLOW
+ "Large Processing Factory"
+ EnumChatFormatting.RESET,
"#22 Circuit is imprinted in Hatch", "Capacity: " + GTUtility.formatNumbers(getCapacity()) + "L",
"Fluid Input with Mold for " + EnumChatFormatting.YELLOW + "Fluid Shaper" + EnumChatFormatting.RESET,
"Capacity: " + GTUtility.formatNumbers(getCapacity()) + "L",
"Added by: " + EnumChatFormatting.AQUA
+ "Quetz4l"
+ " - "
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ protected MultiblockTooltipBuilder createTooltip() {
MultiblockTooltipBuilder tt = new MultiblockTooltipBuilder();
tt.addMachineType(getMachineType())
.addInfo("Controller Block for the Industrial Multi-Machine")
.addInfo(EnumChatFormatting.RED + "DEPRECATED! This machine will be removed in the next major update.")
.addInfo(EnumChatFormatting.RED + "A variety of multiblocks have been added to replace these machines!")
.addInfo("250% faster than using single block machines of the same voltage")
.addInfo("Only uses 80% of the EU/t normally required")
.addInfo("Processes two items per voltage tier")
Expand Down