aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTechnus <daniel112092@gmail.com>2017-05-01 10:28:29 +0200
committerTechnus <daniel112092@gmail.com>2017-05-01 10:28:29 +0200
commit254306ebfddbe41bef767ce5b78bf3992e1ea4ae (patch)
tree3cd5b1a5699703a33094920f4ee16ef480f9d826
parentf2b8bbdde8c7ebac99e5e6fdb3cc497d39dd575e (diff)
downloadGT5-Unofficial-254306ebfddbe41bef767ce5b78bf3992e1ea4ae.tar.gz
GT5-Unofficial-254306ebfddbe41bef767ce5b78bf3992e1ea4ae.tar.bz2
GT5-Unofficial-254306ebfddbe41bef767ce5b78bf3992e1ea4ae.zip
Not needed
-rw-r--r--src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java b/src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java
index de352b6f8c..ef4f4f1362 100644
--- a/src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java
+++ b/src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java
@@ -663,9 +663,8 @@ public abstract class MetaPipeEntity implements IMetaTileEntity {
int tX = getBaseMetaTileEntity().getXCoord(), tY = getBaseMetaTileEntity().getYCoord(), tZ = getBaseMetaTileEntity().getZCoord();
World tWorld = getBaseMetaTileEntity().getWorld();
tWorld.setBlock(tX, tY, tZ, Blocks.air);
- if (GregTech_API.sMachineExplosions) {
+ if (GregTech_API.sMachineExplosions)
tWorld.createExplosion(null, tX + 0.5, tY + 0.5, tZ + 0.5, tStrength, true);
- }
}
@Override