diff options
| author | boubou19 <miisterunknown@gmail.com> | 2024-06-26 18:10:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-26 18:10:36 +0200 |
| commit | 25cf7d918f7c1b93d137757f4236846066f520d5 (patch) | |
| tree | 7b866d8a2c0961e2153bd58aeb984145042facd9 /src/main/java/gregtech/loaders/preload | |
| parent | 6b89b3b942366ccbfff258e9f67eba6b3b5c0377 (diff) | |
| download | GT5-Unofficial-25cf7d918f7c1b93d137757f4236846066f520d5.tar.gz GT5-Unofficial-25cf7d918f7c1b93d137757f4236846066f520d5.tar.bz2 GT5-Unofficial-25cf7d918f7c1b93d137757f4236846066f520d5.zip | |
Remove crates (#2687)
* remove crates
* Add placeholder oreprefix
To be used in cases where a prefix is removed that isnt at the end of a
list. Causes blank items for existing items
* spotless
---------
Co-authored-by: Caedis <Caedis@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/loaders/preload')
| -rw-r--r-- | src/main/java/gregtech/loaders/preload/GT_Loader_OreProcessing.java | 2 | ||||
| -rw-r--r-- | src/main/java/gregtech/loaders/preload/GT_PreLoad.java | 7 |
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() |
