aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r--src/main/java/gregtech/common/blocks/GT_Block_Casings5.java2
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/multiblock/LayeredCokeBattery.java9
2 files changed, 9 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/blocks/GT_Block_Casings5.java b/src/main/java/gregtech/common/blocks/GT_Block_Casings5.java
index 3a9efdbe71..0cb1934dec 100644
--- a/src/main/java/gregtech/common/blocks/GT_Block_Casings5.java
+++ b/src/main/java/gregtech/common/blocks/GT_Block_Casings5.java
@@ -66,6 +66,7 @@ public class GT_Block_Casings5 extends GT_Block_Casings_Abstract implements IHea
ItemList.Casing_Coil_Infinity.set(new ItemStack(this, 1, 11));
ItemList.Casing_Coil_Hypogen.set(new ItemStack(this, 1, 12));
ItemList.Casing_Coil_Eternal.set(new ItemStack(this, 1, 13));
+ ItemList.Casing_Shielded_Accelerator.set(new ItemStack(this, 1, 14));
}
@Override
@@ -91,6 +92,7 @@ public class GT_Block_Casings5 extends GT_Block_Casings_Abstract implements IHea
case 11 -> Textures.BlockIcons.MACHINE_COIL_INFINITY.getIcon();
case 12 -> Textures.BlockIcons.MACHINE_COIL_HYPOGEN.getIcon();
case 13 -> Textures.BlockIcons.MACHINE_COIL_ETERNAL.getIcon();
+ case 14 -> Textures.BlockIcons.MACHINE_CASING_SHIELDED_ACCELERATOR.getIcon();
default -> Textures.BlockIcons.MACHINE_COIL_CUPRONICKEL.getIcon();
};
}
diff --git a/src/main/java/gregtech/common/tileentities/machines/multiblock/LayeredCokeBattery.java b/src/main/java/gregtech/common/tileentities/machines/multiblock/LayeredCokeBattery.java
index 3b00708e40..e2f8dc9b6e 100644
--- a/src/main/java/gregtech/common/tileentities/machines/multiblock/LayeredCokeBattery.java
+++ b/src/main/java/gregtech/common/tileentities/machines/multiblock/LayeredCokeBattery.java
@@ -1,7 +1,12 @@
package gregtech.common.tileentities.machines.multiblock;
-import static com.gtnewhorizon.structurelib.structure.StructureUtility.*;
-import static gregtech.api.enums.Mods.*;
+import static com.gtnewhorizon.structurelib.structure.StructureUtility.ofBlock;
+import static com.gtnewhorizon.structurelib.structure.StructureUtility.ofBlockUnlocalizedName;
+import static com.gtnewhorizon.structurelib.structure.StructureUtility.ofChain;
+import static com.gtnewhorizon.structurelib.structure.StructureUtility.transpose;
+import static gregtech.api.enums.Mods.BartWorks;
+import static gregtech.api.enums.Mods.IndustrialCraft2;
+import static gregtech.api.enums.Mods.Thaumcraft;
import static gregtech.api.multitileentity.multiblock.base.MultiBlockPart.ENERGY_IN;
import static gregtech.api.multitileentity.multiblock.base.MultiBlockPart.FLUID_IN;
import static gregtech.api.multitileentity.multiblock.base.MultiBlockPart.FLUID_OUT;