aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/preload
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/loaders/preload')
-rw-r--r--src/main/java/gregtech/loaders/preload/GT_Loader_OreProcessing.java2
-rw-r--r--src/main/java/gregtech/loaders/preload/GT_PreLoad.java7
2 files changed, 3 insertions, 6 deletions
diff --git a/src/main/java/gregtech/loaders/preload/GT_Loader_OreProcessing.java b/src/main/java/gregtech/loaders/preload/GT_Loader_OreProcessing.java
index 116b6928e4..541fcbc2e5 100644
--- a/src/main/java/gregtech/loaders/preload/GT_Loader_OreProcessing.java
+++ b/src/main/java/gregtech/loaders/preload/GT_Loader_OreProcessing.java
@@ -10,7 +10,6 @@ import gregtech.loaders.oreprocessing.ProcessingCell;
import gregtech.loaders.oreprocessing.ProcessingCircuit;
import gregtech.loaders.oreprocessing.ProcessingCompressed;
import gregtech.loaders.oreprocessing.ProcessingCrafting;
-import gregtech.loaders.oreprocessing.ProcessingCrate;
import gregtech.loaders.oreprocessing.ProcessingCrop;
import gregtech.loaders.oreprocessing.ProcessingCrushedOre;
import gregtech.loaders.oreprocessing.ProcessingCrystallized;
@@ -65,7 +64,6 @@ public class GT_Loader_OreProcessing implements Runnable {
new ProcessingBlock();
new ProcessingBolt();
new ProcessingCell();
- new ProcessingCrate();
new ProcessingCircuit();
new ProcessingCompressed();
new ProcessingCrafting();
diff --git a/src/main/java/gregtech/loaders/preload/GT_PreLoad.java b/src/main/java/gregtech/loaders/preload/GT_PreLoad.java
index bbbb9af59d..d7c752a199 100644
--- a/src/main/java/gregtech/loaders/preload/GT_PreLoad.java
+++ b/src/main/java/gregtech/loaders/preload/GT_PreLoad.java
@@ -289,8 +289,7 @@ public class GT_PreLoad {
"toolHeadBuzzSaw", "turbineBlade", null, null, "wireFine", "gearGtSmall", "rotor",
"stickLong", "springSmall", "spring", "arrowGtWood", "arrowGtPlastic", "gemChipped",
"gemFlawed", "gemFlawless", "gemExquisite", "gearGt" };
- if (mIt == 3) tags = new String[] { "crateGtDust", "crateGtIngot", "crateGtGem",
- "crateGtPlate", "itemCasing", "nanite" };
+ if (mIt == 3) tags = new String[] { "itemCasing", "nanite" };
if (tags.length > prefix) tag = tags[prefix];
if (GregTech_API.sGeneratedMaterials[material] != null) {
tag += GregTech_API.sGeneratedMaterials[material].mName;
@@ -313,8 +312,8 @@ public class GT_PreLoad {
"toolHeadHammer", "toolHeadFile", "toolHeadSaw", "toolHeadDrill", "toolHeadChainsaw", "toolHeadWrench",
"toolHeadUniversalSpade", "toolHeadSense", "toolHeadPlow", "toolHeadArrow", "toolHeadBuzzSaw",
"turbineBlade", "wireFine", "gearGtSmall", "rotor", "stickLong", "springSmall", "spring", "arrowGtWood",
- "arrowGtPlastic", "gemChipped", "gemFlawed", "gemFlawless", "gemExquisite", "gearGt", "crateGtDust",
- "crateGtIngot", "crateGtGem", "crateGtPlate", "nanite", "cellMolten", "rawOre" };
+ "arrowGtPlastic", "gemChipped", "gemFlawed", "gemFlawless", "gemExquisite", "gearGt", "nanite",
+ "cellMolten", "rawOre" };
List<String> mMTTags = new ArrayList<>();
oreTags.stream()