aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com
diff options
context:
space:
mode:
authorchochem <40274384+chochem@users.noreply.github.com>2023-05-06 15:56:30 +0100
committerGitHub <noreply@github.com>2023-05-06 16:56:30 +0200
commit0b3519693af183c11c79e275734f8f5d0d58bd1e (patch)
tree20a5c81912bf73580cda855855a050ad5d38dc26 /src/main/java/com
parent7e1778c716446a5f474349eb6d4002d7fff747f4 (diff)
downloadGT5-Unofficial-0b3519693af183c11c79e275734f8f5d0d58bd1e.tar.gz
GT5-Unofficial-0b3519693af183c11c79e275734f8f5d0d58bd1e.tar.bz2
GT5-Unofficial-0b3519693af183c11c79e275734f8f5d0d58bd1e.zip
Remove LuVtier enhancements (#320)
* remove LuVtier enhancements * load order * add bridge subtag * dont change imc loading Former-commit-id: 11ff08612e7e386d08918820b20056335fd47be3
Diffstat (limited to 'src/main/java/com')
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/MainMod.java4
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/system/material/GT_Enhancement/LuVTierEnhancer.java374
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java7
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/system/material/processingLoaders/AddSomeRecipes.java (renamed from src/main/java/com/github/bartimaeusnek/bartworks/system/material/processingLoaders/AfterLuVTierEnhacement.java)6
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/system/material/processingLoaders/AdditionalRecipes.java3
5 files changed, 13 insertions, 381 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/MainMod.java b/src/main/java/com/github/bartimaeusnek/bartworks/MainMod.java
index f157c6c0e7..e5253d3dfb 100644
--- a/src/main/java/com/github/bartimaeusnek/bartworks/MainMod.java
+++ b/src/main/java/com/github/bartimaeusnek/bartworks/MainMod.java
@@ -162,12 +162,14 @@ public final class MainMod {
WerkstoffLoader.runInit();
ItemRegistry.run();
- RecipeLoader.run();
IMCForNEI.IMCSender();
}
@Mod.EventHandler
public void postInit(FMLPostInitializationEvent postinit) {
+
+ RecipeLoader.run();
+
NetworkRegistry.INSTANCE.registerGuiHandler(MainMod.instance, MainMod.GH);
if (ConfigHandler.BioLab) {
GTNHBlocks.run();
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/GT_Enhancement/LuVTierEnhancer.java b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/GT_Enhancement/LuVTierEnhancer.java
deleted file mode 100644
index 8f1010017c..0000000000
--- a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/GT_Enhancement/LuVTierEnhancer.java
+++ /dev/null
@@ -1,374 +0,0 @@
-/*
- * Copyright (c) 2018-2020 bartimaeusnek Permission is hereby granted, free of charge, to any person obtaining a copy of
- * this software and associated documentation files (the "Software"), to deal in the Software without restriction,
- * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following
- * conditions: The above copyright notice and this permission notice shall be included in all copies or substantial
- * portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
- * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- * DEALINGS IN THE SOFTWARE.
- */
-
-package com.github.bartimaeusnek.bartworks.system.material.GT_Enhancement;
-
-import static com.github.bartimaeusnek.bartworks.MainMod.MOD_ID;
-import static gregtech.api.enums.Mods.NewHorizonsCoreMod;
-import static gregtech.api.enums.OrePrefixes.dust;
-import static gregtech.api.enums.OrePrefixes.ingot;
-import static gregtech.api.enums.OrePrefixes.plate;
-import static gregtech.api.enums.OrePrefixes.plateDense;
-import static gregtech.api.enums.OrePrefixes.plateDouble;
-import static gregtech.api.enums.OrePrefixes.rotor;
-import static gregtech.api.enums.OrePrefixes.stick;
-import static gregtech.api.enums.OrePrefixes.stickLong;
-
-import java.lang.reflect.InvocationTargetException;
-import java.lang.reflect.Method;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.Collection;
-import java.util.HashSet;
-import java.util.List;
-import java.util.function.Consumer;
-import java.util.function.Predicate;
-
-import net.minecraft.item.ItemStack;
-import net.minecraft.item.crafting.CraftingManager;
-import net.minecraft.item.crafting.IRecipe;
-import net.minecraftforge.fluids.Fluid;
-import net.minecraftforge.fluids.FluidStack;
-
-import org.apache.commons.lang3.reflect.FieldUtils;
-import org.apache.commons.lang3.reflect.MethodUtils;
-
-import com.github.bartimaeusnek.bartworks.common.loaders.ItemRegistry;
-import com.github.bartimaeusnek.bartworks.system.material.Werkstoff;
-import com.github.bartimaeusnek.bartworks.system.material.WerkstoffLoader;
-import com.github.bartimaeusnek.bartworks.system.material.processingLoaders.AfterLuVTierEnhacement;
-import com.github.bartimaeusnek.bartworks.util.BW_Util;
-
-import gregtech.api.enums.ItemList;
-import gregtech.api.enums.Materials;
-import gregtech.api.enums.OrePrefixes;
-import gregtech.api.objects.ItemData;
-import gregtech.api.util.GT_ModHandler;
-import gregtech.api.util.GT_OreDictUnificator;
-import gregtech.api.util.GT_Recipe;
-import gregtech.api.util.GT_Recipe.GT_Recipe_AssemblyLine;
-import gregtech.api.util.GT_Recipe.GT_Recipe_Map;
-import gregtech.api.util.GT_Shaped_Recipe;
-import gregtech.api.util.GT_Utility;
-import gregtech.common.items.GT_MetaGenerated_Tool_01;
-
-@SuppressWarnings("ALL")
-public class LuVTierEnhancer implements Runnable {
-
- private static List<ItemStack> blackListForOsmiridium = new ArrayList<>();
-
- static {
- addToBlackListForOsmiridiumReplacement(ItemList.Casing_MiningOsmiridium.get(1));
- addToBlackListForOsmiridiumReplacement(
- GT_MetaGenerated_Tool_01.INSTANCE
- .getToolWithStats(170, 1, Materials.Osmiridium, Materials.Osmiridium, null));
- addToBlackListForOsmiridiumReplacement(
- GT_MetaGenerated_Tool_01.INSTANCE
- .getToolWithStats(172, 1, Materials.Osmiridium, Materials.Osmiridium, null));
- addToBlackListForOsmiridiumReplacement(
- GT_MetaGenerated_Tool_01.INSTANCE
- .getToolWithStats(174, 1, Materials.Osmiridium, Materials.Osmiridium, null));
- addToBlackListForOsmiridiumReplacement(
- GT_MetaGenerated_Tool_01.INSTANCE
- .getToolWithStats(176, 1, Materials.Osmiridium, Materials.Osmiridium, null));
- }
-
- public void run() {
-
- List<IRecipe> bufferedRecipeList = null;
-
- try {
- bufferedRecipeList = (List<IRecipe>) FieldUtils
- .getDeclaredField(GT_ModHandler.class, "sBufferRecipeList", true).get(null);
- } catch (IllegalAccessException e) {
- e.printStackTrace();
- }
-
- HashSet<ItemStack> LuVMachines = new HashSet<>();
- LuVMachines.add(ItemRegistry.cal);
- OrePrefixes[] LuVMaterialsGenerated = { dust, ingot, plate, stick, stickLong, rotor, plateDouble, plateDense };
-
- Arrays.stream(ItemList.values()).filter(item -> item.toString().contains("LuV") && item.hasBeenSet())
- .forEach(item -> LuVMachines.add(item.get(1)));
-
- if (NewHorizonsCoreMod.isModLoaded()) {
- addDreamcraftItemListItems(LuVMachines);
- }
-
- GT_ModHandler.addCraftingRecipe(
- ItemList.Casing_LuV.get(1),
- GT_ModHandler.RecipeBits.BUFFERED | GT_ModHandler.RecipeBits.REVERSIBLE
- | GT_ModHandler.RecipeBits.NOT_REMOVABLE
- | GT_ModHandler.RecipeBits.DELETE_ALL_OTHER_RECIPES,
- new Object[] { "PPP", "PwP", "PPP", 'P', WerkstoffLoader.LuVTierMaterial.get(plate) });
-
- replaceAllRecipes(LuVMachines, LuVMaterialsGenerated, bufferedRecipeList);
-
- AfterLuVTierEnhacement.run();
- }
-
- /**
- * @param stack Output item to disable Ruridit replacement in recipes
- */
- public static void addToBlackListForOsmiridiumReplacement(ItemStack stack) {
- blackListForOsmiridium.add(stack);
- }
-
- private static void replaceAllRecipes(Collection<ItemStack> LuVMachines, OrePrefixes[] LuVMaterialsGenerated,
- List<IRecipe> bufferedRecipeList) {
-
- for (GT_Recipe_AssemblyLine sAssemblylineRecipe : GT_Recipe_AssemblyLine.sAssemblylineRecipes) {
- for (ItemStack stack : LuVMachines) {
- rewriteAsslineRecipes(stack, LuVMaterialsGenerated, sAssemblylineRecipe);
- }
- }
-
- for (GT_Recipe_Map map : GT_Recipe_Map.sMappings) {
- for (GT_Recipe recipe : map.mRecipeList) {
- for (ItemStack stack : LuVMachines) {
- rewriteMachineRecipes(stack, LuVMaterialsGenerated, recipe);
- }
- }
- }
-
- for (ItemStack stack : LuVMachines) {
- Predicate recipeFilter = obj -> obj instanceof GT_Shaped_Recipe
- && GT_Utility.areStacksEqual(((GT_Shaped_Recipe) obj).getRecipeOutput(), stack, true);
- rewriteCraftingRecipes(bufferedRecipeList, LuVMaterialsGenerated, recipeFilter);
- }
- }
-
- private static void addDreamcraftItemListItems(Collection LuVMachines) {
- try {
- Class customItemListClass = Class.forName("com.dreammaster.gthandler.CustomItemList");
- Method hasnotBeenSet = MethodUtils.getAccessibleMethod(customItemListClass, "hasBeenSet");
- Method get = MethodUtils.getAccessibleMethod(customItemListClass, "get", long.class, Object[].class);
- for (Enum customItemList : (Enum[]) FieldUtils.getField(customItemListClass, "$VALUES", true).get(null)) {
- if (customItemList.toString().contains("LuV") && (boolean) hasnotBeenSet.invoke(customItemList))
- LuVMachines.add((ItemStack) get.invoke(customItemList, 1, new Object[0]));
- }
- } catch (IllegalAccessException | ClassNotFoundException | InvocationTargetException e) {
- e.printStackTrace();
- }
- }
-
- private static void rewriteCraftingRecipes(List<IRecipe> bufferedRecipeList, OrePrefixes[] LuVMaterialsGenerated,
- Predicate recipeFilter) {
- for (OrePrefixes prefixes : LuVMaterialsGenerated) {
-
- Consumer recipeAction = obj -> LuVTierEnhancer.doStacksContainAndReplace(
- null,
- ((GT_Shaped_Recipe) obj).getInput(),
- GT_OreDictUnificator.get(prefixes, Materials.Chrome, 1),
- true,
- WerkstoffLoader.LuVTierMaterial.get(prefixes));
-
- CraftingManager.getInstance().getRecipeList().stream().filter(recipeFilter).forEach(recipeAction);
- bufferedRecipeList.stream().filter(recipeFilter).forEach(recipeAction);
- }
- }
-
- private static void rewriteMachineRecipes(ItemStack stack, OrePrefixes[] LuVMaterialsGenerated, GT_Recipe recipe) {
- if (LuVTierEnhancer.doStacksContainAndReplace(recipe, recipe.mInputs, stack, false)) {
- for (OrePrefixes prefixes : LuVMaterialsGenerated) {
- LuVTierEnhancer.doStacksContainAndReplace(
- recipe,
- recipe.mInputs,
- GT_OreDictUnificator.get(prefixes, Materials.Chrome, 1),
- true,
- WerkstoffLoader.LuVTierMaterial.get(prefixes));
- LuVTierEnhancer.doStacksContainAndReplace(
- recipe,
- recipe.mOutputs,
- GT_OreDictUnificator.get(prefixes, Materials.Chrome, 1),
- true,
- WerkstoffLoader.LuVTierMaterial.get(prefixes));
- }
- LuVTierEnhancer.doStacksContainAndReplace(
- recipe,
- recipe.mFluidInputs,
- Materials.Chrome.getMolten(1),
- true,
- WerkstoffLoader.LuVTierMaterial.getMolten(1).getFluid());
- LuVTierEnhancer.doStacksContainAndReplace(
- recipe,
- recipe.mFluidOutputs,
- Materials.Chrome.getMolten(1),
- true,
- WerkstoffLoader.LuVTierMaterial.getMolten(1).getFluid());
- }
- if (LuVTierEnhancer.doStacksContainAndReplace(recipe, recipe.mOutputs, stack, false)) {
- for (OrePrefixes prefixes : LuVMaterialsGenerated) {
- LuVTierEnhancer.doStacksContainAndReplace(
- recipe,
- recipe.mInputs,
- GT_OreDictUnificator.get(prefixes, Materials.Chrome, 1),
- true,
- WerkstoffLoader.LuVTierMaterial.get(prefixes));
- LuVTierEnhancer.doStacksContainAndReplace(
- recipe,
- recipe.mOutputs,
- GT_OreDictUnificator.get(prefixes, Materials.Chrome, 1),
- true,
- WerkstoffLoader.LuVTierMaterial.get(prefixes));
- }
- LuVTierEnhancer.doStacksContainAndReplace(
- recipe,
- recipe.mFluidInputs,
- Materials.Chrome.getMolten(1),
- true,
- WerkstoffLoader.LuVTierMaterial.getMolten(1).getFluid());
- LuVTierEnhancer.doStacksContainAndReplace(
- recipe,
- recipe.mFluidOutputs,
- Materials.Chrome.getMolten(1),
- true,
- WerkstoffLoader.LuVTierMaterial.getMolten(1).getFluid());
- }
- }
-
- private static void rewriteAsslineRecipes(ItemStack stack, OrePrefixes[] LuVMaterialsGenerated,
- GT_Recipe.GT_Recipe_AssemblyLine recipe) {
- for (OrePrefixes prefixes : LuVMaterialsGenerated) {
- if (LuVTierEnhancer.doStacksContainAndReplace(recipe, recipe.mInputs, stack, false)) {
- LuVTierEnhancer.doStacksContainAndReplace(
- recipe,
- recipe.mInputs,
- GT_OreDictUnificator.get(prefixes, Materials.Chrome, 1),
- true,
- WerkstoffLoader.LuVTierMaterial.get(prefixes));
- LuVTierEnhancer.doStacksContainAndReplace(
- recipe,
- new Object[] { recipe.mOutput },
- GT_OreDictUnificator.get(prefixes, Materials.Chrome, 1),
- true,
- WerkstoffLoader.LuVTierMaterial.get(prefixes));
- }
- if (LuVTierEnhancer.doStacksContainAndReplace(recipe, new Object[] { recipe.mOutput }, stack, false)) {
- LuVTierEnhancer.doStacksContainAndReplace(
- recipe,
- recipe.mInputs,
- GT_OreDictUnificator.get(prefixes, Materials.Chrome, 1),
- true,
- WerkstoffLoader.LuVTierMaterial.get(prefixes));
- LuVTierEnhancer.doStacksContainAndReplace(
- recipe,
- new Object[] { recipe.mOutput },
- GT_OreDictUnificator.get(prefixes, Materials.Chrome, 1),
- true,
- WerkstoffLoader.LuVTierMaterial.get(prefixes));
- }
- }
- if (LuVTierEnhancer.doStacksContainAndReplace(recipe, recipe.mInputs, stack, false)) {
- LuVTierEnhancer.doStacksContainAndReplace(
- recipe,
- recipe.mFluidInputs,
- Materials.Chrome.getMolten(1),
- true,
- WerkstoffLoader.LuVTierMaterial.getMolten(1).getFluid());
- }
- if (LuVTierEnhancer.doStacksContainAndReplace(recipe, new Object[] { recipe.mOutput }, stack, false)) {
- LuVTierEnhancer.doStacksContainAndReplace(
- recipe,
- recipe.mFluidInputs,
- Materials.Chrome.getMolten(1),
- true,
- WerkstoffLoader.LuVTierMaterial.getMolten(1).getFluid());
- }
- }
-
- private static boolean isOutputBlackListed(ItemStack output) {
- if (blackListForOsmiridium.stream().anyMatch(s -> GT_Utility.areStacksEqual(s, output))) return true;
- return false;
- }
-
- private static ItemStack[] replaceArrayWith(ItemStack[] stackArray, Materials source, Werkstoff target,
- Object recipe) {
- boolean replaced = false;
- for (int i = 0; i < stackArray.length; i++) {
- ItemStack stack = stackArray[i];
- if (!BW_Util.checkStackAndPrefix(stack)) continue;
- stackArray[i] = replaceStackWith(stack, source, target, recipe);
- }
- return stackArray;
- }
-
- private static ItemStack replaceStackWith(ItemStack stack, Materials source, Werkstoff target, Object recipe) {
- ItemData ass = GT_OreDictUnificator.getAssociation(stack);
- if (ass.mMaterial.mMaterial.equals(source)) {
- if (target.hasItemType(ass.mPrefix)) {
- stack = target.get(ass.mPrefix, stack.stackSize);
- if (recipe instanceof GT_Recipe) {
- ((GT_Recipe) recipe).setOwner(MOD_ID);
- } else if (recipe instanceof GT_Recipe_AssemblyLine) {
- // todo: update NEI fake recipe
- }
- }
- }
- return stack;
- }
-
- private static boolean doStacksContainAndReplace(Object recipe, FluidStack[] stacks, FluidStack stack,
- boolean replace, Fluid... replacement) {
- boolean replaced = false;
- for (int i = 0; i < stacks.length; i++) {
- if (GT_Utility.areFluidsEqual(stack, stacks[i])) if (!replace) return true;
- else {
- int amount = stacks[i].amount;
- stacks[i] = new FluidStack(replacement[0], amount);
- replaced = true;
- }
- }
- if (replace && replaced) {
- if (recipe instanceof GT_Recipe) {
- ((GT_Recipe) recipe).setOwner(MOD_ID);
- } else if (recipe instanceof GT_Recipe_AssemblyLine) {
- // todo: update NEI fake recipe
- }
- }
- return replaced;
- }
-
- private static boolean doStacksContainAndReplace(Object recipe, Object[] stacks, ItemStack stack, boolean replace,
- ItemStack... replacement) {
- boolean replaced = false;
- for (int i = 0; i < stacks.length; i++) {
- if (!GT_Utility.isStackValid(stacks[i])) {
- if (stacks[i] instanceof ArrayList && ((ArrayList) stacks[i]).size() > 0) {
- if (GT_Utility.areStacksEqual(stack, (ItemStack) ((ArrayList) stacks[i]).get(0), true))
- if (!replace) return true;
- else {
- int amount = ((ItemStack) ((ArrayList) stacks[i]).get(0)).stackSize;
- stacks[i] = new ArrayList<>();
- ((ArrayList) stacks[i]).add(BW_Util.setStackSize(replacement[0], amount));
- replaced = true;
- }
-
- } else continue;
- } else if (GT_Utility.areStacksEqual(stack, (ItemStack) stacks[i], true)) if (!replace) return true;
- else {
- int amount = ((ItemStack) stacks[i]).stackSize;
- stacks[i] = BW_Util.setStackSize(replacement[0], amount);
- replaced = true;
- }
- }
- if (replace && replaced) {
- if (recipe instanceof GT_Recipe) {
- ((GT_Recipe) recipe).setOwner(MOD_ID);
- } else if (recipe instanceof GT_Recipe_AssemblyLine) {
- // todo: update NEI fake recipe
- }
- }
- return replaced;
- }
-}
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java
index cd9bb7f200..6a6d849947 100644
--- a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java
+++ b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java
@@ -1468,6 +1468,7 @@ public class WerkstoffLoader {
WerkstoffAdderRegistry.run();
addSubTags();
addItemsForGeneration();
+ addBridgeSubTags();
runAdditionalOreDict();
long timepost = System.nanoTime();
MainMod.LOGGER.info(
@@ -1600,6 +1601,12 @@ public class WerkstoffLoader {
}
}
+ private static void addBridgeSubTags() {
+ // add specific GT materials subtags to various werkstoff bridgematerials
+
+ SubTag.METAL.addTo(LuVTierMaterial.getBridgeMaterial());
+ }
+
public static long toGenerateGlobal;
private static void addItemsForGeneration() {
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/processingLoaders/AfterLuVTierEnhacement.java b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/processingLoaders/AddSomeRecipes.java
index 84b78c9b2b..a76364faa7 100644
--- a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/processingLoaders/AfterLuVTierEnhacement.java
+++ b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/processingLoaders/AddSomeRecipes.java
@@ -24,11 +24,9 @@ import gregtech.api.enums.ItemList;
import gregtech.api.enums.Materials;
import gregtech.api.util.GT_OreDictUnificator;
-public class AfterLuVTierEnhacement {
+public class AddSomeRecipes implements Runnable {
- private AfterLuVTierEnhacement() {}
-
- public static void run() {
+ public void run() {
GT_Values.RA.addCentrifugeRecipe(
BW_NonMeta_MaterialItems.Depleted_Tiberium_1.get(1),
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/processingLoaders/AdditionalRecipes.java b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/processingLoaders/AdditionalRecipes.java
index 1f2c9d9106..2ca6d8028b 100644
--- a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/processingLoaders/AdditionalRecipes.java
+++ b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/processingLoaders/AdditionalRecipes.java
@@ -47,7 +47,6 @@ import com.github.bartimaeusnek.bartworks.common.loaders.FluidLoader;
import com.github.bartimaeusnek.bartworks.common.loaders.ItemRegistry;
import com.github.bartimaeusnek.bartworks.system.material.BW_NonMeta_MaterialItems;
import com.github.bartimaeusnek.bartworks.system.material.CircuitGeneration.BW_Meta_Items;
-import com.github.bartimaeusnek.bartworks.system.material.GT_Enhancement.LuVTierEnhancer;
import com.github.bartimaeusnek.bartworks.system.material.Werkstoff;
import com.github.bartimaeusnek.bartworks.system.material.WerkstoffLoader;
import com.github.bartimaeusnek.bartworks.util.BWRecipes;
@@ -634,7 +633,7 @@ public class AdditionalRecipes {
100,
BW_Util.getMachineVoltageFromTier(6));
- GregTech_API.sAfterGTPostload.add(new LuVTierEnhancer());
+ GregTech_API.sAfterGTPostload.add(new AddSomeRecipes());
AdditionalRecipes.oldGThelperMethod();
}