aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/util
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2021-11-12 17:36:20 +0000
committerGitHub <noreply@github.com>2021-11-12 17:36:20 +0000
commit20f1989cc50d6a731e1962e1257004e369f59c0c (patch)
treed970ce6244d65ff5f98a1451b57a3a60eda9bea8 /src/main/java/gregtech/api/util
parentdd327a0df3d763730eab8c1e0f3f0d5a61e21ac7 (diff)
downloadGT5-Unofficial-20f1989cc50d6a731e1962e1257004e369f59c0c.tar.gz
GT5-Unofficial-20f1989cc50d6a731e1962e1257004e369f59c0c.tar.bz2
GT5-Unofficial-20f1989cc50d6a731e1962e1257004e369f59c0c.zip
Update GT_ModHandler.java
Fix GT_Tools not going into the IC2 Toolbox. https://media.discordapp.net/attachments/603348502637969419/908770911203758080/2021-11-12_17.29.53.png?width=1277&height=683
Diffstat (limited to 'src/main/java/gregtech/api/util')
-rw-r--r--src/main/java/gregtech/api/util/GT_ModHandler.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/util/GT_ModHandler.java b/src/main/java/gregtech/api/util/GT_ModHandler.java
index a910723069..810a204c40 100644
--- a/src/main/java/gregtech/api/util/GT_ModHandler.java
+++ b/src/main/java/gregtech/api/util/GT_ModHandler.java
@@ -91,7 +91,7 @@ public class GT_ModHandler {
public static volatile int VERSION = 509;
public static Collection<String> sNativeRecipeClasses = new HashSet<>(), sSpecialRecipeClasses = new HashSet<>();
public static GT_HashSet<GT_ItemStack> sNonReplaceableItems = new GT_HashSet<>();
- public static Object sBoxableWrapper = GT_Utility.callConstructor("gregtechmod.api.util.GT_IBoxableWrapper", 0, null, false);
+ public static Object sBoxableWrapper = new GT_IBoxableWrapper();
private static final Map<IRecipeInput, RecipeOutput> sExtractorRecipes = new HashMap<>();
private static final Map<IRecipeInput, RecipeOutput> sMaceratorRecipes = new HashMap<>();
private static final Map<IRecipeInput, RecipeOutput> sCompressorRecipes = new HashMap<>();