aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxim <maxim235@gmx.de>2022-09-23 19:58:17 +0200
committerGitHub <noreply@github.com>2022-09-23 19:58:17 +0200
commit8f4ddc0fada3869ba4c678eae4e4404c58f60137 (patch)
tree7bf5cc01a148390df50c30c3f807256f2303b22c /src
parentef3fba1392c008cd6552cf3440ca470f21a1b366 (diff)
downloadGT5-Unofficial-8f4ddc0fada3869ba4c678eae4e4404c58f60137.tar.gz
GT5-Unofficial-8f4ddc0fada3869ba4c678eae4e4404c58f60137.tar.bz2
GT5-Unofficial-8f4ddc0fada3869ba4c678eae4e4404c58f60137.zip
Decreased case count from 10 to 5 (#291)
Diffstat (limited to 'src')
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_AlloyBlastSmelter.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_AlloyBlastSmelter.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_AlloyBlastSmelter.java
index 704f9ece9e..5a57730236 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_AlloyBlastSmelter.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_AlloyBlastSmelter.java
@@ -90,7 +90,7 @@ public class GregtechMetaTileEntity_AlloyBlastSmelter
.addSeparator()
.beginStructureBlock(3, 4, 3, true)
.addController("Bottom Center")
- .addCasingInfo("Blast Smelter Casings", 10)
+ .addCasingInfo("Blast Smelter Casings", 5)
.addCasingInfo("Blast Smelter Heat Containment Coils", 16)
.addInputBus("Any Casing", 1)
.addInputHatch("Any Casing", 1)
@@ -140,7 +140,7 @@ public class GregtechMetaTileEntity_AlloyBlastSmelter
@Override
public boolean checkMachine(IGregTechTileEntity aBaseMetaTileEntity, ItemStack aStack) {
mCasing = 0;
- return checkPiece(mName, 1, 3, 0) && mCasing >= 10 && mEnergyHatches.size() == 1 && checkHatch();
+ return checkPiece(mName, 1, 3, 0) && mCasing >= 5 && mEnergyHatches.size() == 1 && checkHatch();
}
@Override