diff options
author | Mary <33456283+FourIsTheNumber@users.noreply.github.com> | 2024-09-05 08:59:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 12:59:45 +0000 |
commit | ab69fedbe57449636864b6850f7dfcb00e1d95ac (patch) | |
tree | 6cc590171e4fa736a5820827bcc714bd52d3743d /src/main/java/gregtech/loaders/preload | |
parent | cfe77195048ea7a5635cf1b91c34d3894e2dde00 (diff) | |
download | GT5-Unofficial-ab69fedbe57449636864b6850f7dfcb00e1d95ac.tar.gz GT5-Unofficial-ab69fedbe57449636864b6850f7dfcb00e1d95ac.tar.bz2 GT5-Unofficial-ab69fedbe57449636864b6850f7dfcb00e1d95ac.zip |
Move superdense plates to MI3 (#3068)
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gregtech/loaders/preload')
-rw-r--r-- | src/main/java/gregtech/loaders/preload/GTPreLoad.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/gregtech/loaders/preload/GTPreLoad.java b/src/main/java/gregtech/loaders/preload/GTPreLoad.java index a0f5e368c1..efeba9fe89 100644 --- a/src/main/java/gregtech/loaders/preload/GTPreLoad.java +++ b/src/main/java/gregtech/loaders/preload/GTPreLoad.java @@ -267,10 +267,10 @@ public class GTPreLoad { "toolHeadShovel", "toolHeadAxe", "toolHeadHoe", "toolHeadHammer", "toolHeadFile", "toolHeadSaw", "toolHeadDrill", "toolHeadChainsaw", "toolHeadWrench", "toolHeadUniversalSpade", "toolHeadSense", "toolHeadPlow", "toolHeadArrow", - "toolHeadBuzzSaw", "turbineBlade", null, null, "wireFine", "gearGtSmall", "rotor", - "stickLong", "springSmall", "spring", "arrowGtWood", "arrowGtPlastic", "gemChipped", - "gemFlawed", "gemFlawless", "gemExquisite", "gearGt" }; - if (mIt == 3) tags = new String[] { "itemCasing", "nanite" }; + "toolHeadBuzzSaw", "turbineBlade", null, "itemCasing", "wireFine", "gearGtSmall", + "rotor", "stickLong", "springSmall", "spring", "arrowGtWood", "arrowGtPlastic", + "gemChipped", "gemFlawed", "gemFlawless", "gemExquisite", "gearGt" }; + if (mIt == 3) tags = new String[] { "rawOre", "nanite", "plateSuperdense" }; if (tags.length > prefix) tag = tags[prefix]; if (GregTechAPI.sGeneratedMaterials[material] != null) { tag += GregTechAPI.sGeneratedMaterials[material].mName; |