Skip to content

Commit 2177b16

Browse files
committed
fix EIF hatches
1 parent 6882880 commit 2177b16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/impact/mods/gregtech/tileentities/multi/processing/parallel/GTMTE_ElectromagneticInductionFurnace.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,13 +185,13 @@ public boolean machineStructure(IGregTechTileEntity thisController) {
185185
if (this.mInputBusses.size() > 8) {
186186
formationChecklist = false;
187187
}
188-
if (this.mInputHatches.size() > 3) {
188+
if (this.mInputHatches.size() > 8) {
189189
formationChecklist = false;
190190
}
191191
if (this.mOutputBusses.size() > 3) {
192192
formationChecklist = false;
193193
}
194-
if (this.mOutputHatches.size() > 1) {
194+
if (this.mOutputHatches.size() > 3) {
195195
formationChecklist = false;
196196
}
197197
if (this.mEnergyHatches.size() > 4) {

0 commit comments

Comments
 (0)