diff options
author | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2021-03-10 19:59:20 +0100 |
---|---|---|
committer | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2021-03-10 19:59:20 +0100 |
commit | 5977a6f5327eb0536478d240f4a835ddaecdb517 (patch) | |
tree | a845ba9088eebcd6330ce2ed01c67d576e22d901 /src/main/java/gregtech/api/metatileentity | |
parent | d006460e3e3f2221b82c03b02d282d5ed6767095 (diff) | |
download | GT5-Unofficial-5977a6f5327eb0536478d240f4a835ddaecdb517.tar.gz GT5-Unofficial-5977a6f5327eb0536478d240f4a835ddaecdb517.tar.bz2 GT5-Unofficial-5977a6f5327eb0536478d240f4a835ddaecdb517.zip |
Added missing
Diffstat (limited to 'src/main/java/gregtech/api/metatileentity')
-rw-r--r-- | src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java b/src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java index 879982e995..4459b2203a 100644 --- a/src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java +++ b/src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java @@ -699,8 +699,8 @@ public abstract class MetaPipeEntity implements IMetaTileEntity, IConnectable { World tWorld = getBaseMetaTileEntity().getWorld(); tWorld.setBlock(tX, tY, tZ, Blocks.air); if (GregTech_API.sMachineExplosions){ - PositionedWorldEvent<Entity> event = new PositionedWorldEvent<>(tWorld); - event.setPosition(tX + 0.5, tY + 0.5, tZ + 0.5) + new PositionedWorldEvent<>(tWorld) + .setPosition(tX + 0.5, tY + 0.5, tZ + 0.5) .createExplosion(tStrength, true); } } |