diff options
author | Technus <daniel112092@gmail.com> | 2017-05-01 10:28:29 +0200 |
---|---|---|
committer | Technus <daniel112092@gmail.com> | 2017-05-01 10:28:29 +0200 |
commit | 254306ebfddbe41bef767ce5b78bf3992e1ea4ae (patch) | |
tree | 3cd5b1a5699703a33094920f4ee16ef480f9d826 /src/main/java | |
parent | f2b8bbdde8c7ebac99e5e6fdb3cc497d39dd575e (diff) | |
download | GT5-Unofficial-254306ebfddbe41bef767ce5b78bf3992e1ea4ae.tar.gz GT5-Unofficial-254306ebfddbe41bef767ce5b78bf3992e1ea4ae.tar.bz2 GT5-Unofficial-254306ebfddbe41bef767ce5b78bf3992e1ea4ae.zip |
Not needed
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java | 3 |
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 |