aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/metatileentity
diff options
context:
space:
mode:
authorTechnus <daniel112092@gmail.com>2016-10-21 14:13:20 +0200
committerTechnus <daniel112092@gmail.com>2016-10-21 14:13:20 +0200
commit2792a78b1bd8f3c2b37aa4819f8dbc1abceffc70 (patch)
tree657055853aded5f9f7134d5629605a3696bc362b /src/main/java/gregtech/api/metatileentity
parenta5c64128198f839b39c61f992acf3de7b4196dcf (diff)
downloadGT5-Unofficial-2792a78b1bd8f3c2b37aa4819f8dbc1abceffc70.tar.gz
GT5-Unofficial-2792a78b1bd8f3c2b37aa4819f8dbc1abceffc70.tar.bz2
GT5-Unofficial-2792a78b1bd8f3c2b37aa4819f8dbc1abceffc70.zip
Fix derps?
Diffstat (limited to 'src/main/java/gregtech/api/metatileentity')
-rw-r--r--src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_Muffler.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_Muffler.java b/src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_Muffler.java
index e2b6276f99..f30588876d 100644
--- a/src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_Muffler.java
+++ b/src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_Muffler.java
@@ -100,13 +100,13 @@ public class GT_MetaTileEntity_Hatch_Muffler extends GT_MetaTileEntity_Hatch {
IGregTechTileEntity aMuffler=this.getBaseMetaTileEntity();
ForgeDirection aDir=ForgeDirection.getOrientation(aMuffler.getFrontFacing());
double xPos=aDir.offsetX+aMuffler.getXCoord()+0.25F;
- double yPos=aDir.offsetX+aMuffler.getYCoord()+0.25F;
+ double yPos=aDir.offsetX+aMuffler.getYCoord()+0.05F;
double zPos=aDir.offsetX+aMuffler.getZCoord()+0.25F;
- aWorld.spawnParticle("largesmoke", xPos + (new XSTR()).nextFloat()*0.5F, yPos + (new XSTR()).nextFloat(), zPos + (new XSTR()).nextFloat()*0.5F, 0.0D, 0.3D, 0.0D);
+ aWorld.spawnParticle("largesmoke", xPos + (new XSTR()).nextFloat()*0.5F, yPos, zPos + (new XSTR()).nextFloat()*0.5F, 0.0D, 0.3D, 0.0D);
if(GT_Pollution.getPollutionAtCoords(this.getBaseMetaTileEntity().getXCoord(), this.getBaseMetaTileEntity().getZCoord())>= GT_Mod.gregtechproxy.mPollutionSmogLimit) {
- aWorld.spawnParticle("largesmoke", xPos + (new XSTR()).nextFloat()*0.5F, yPos + (new XSTR()).nextFloat(), zPos + (new XSTR()).nextFloat()*0.5F, 0.0D, 0.45D, 0.0D);
- aWorld.spawnParticle("largesmoke", xPos + (new XSTR()).nextFloat()*0.5F, yPos + (new XSTR()).nextFloat(), zPos + (new XSTR()).nextFloat()*0.5F, 0.0D, 0.6D, 0.0D);
+ aWorld.spawnParticle("largesmoke", xPos + (new XSTR()).nextFloat()*0.5F, yPos, zPos + (new XSTR()).nextFloat()*0.5F, 0.0D, 0.45D, 0.0D);
+ aWorld.spawnParticle("largesmoke", xPos + (new XSTR()).nextFloat()*0.5F, yPos, zPos + (new XSTR()).nextFloat()*0.5F, 0.0D, 0.6D, 0.0D);
}
}
}