From b705d6242d9ff9067b15a2f4f700623179319dc1 Mon Sep 17 00:00:00 2001 From: Hea3veN Date: Mon, 9 Feb 2015 21:59:52 -0300 Subject: [PATCH] fix the robot smoke particle causing fps drops in certain cases --- common/buildcraft/core/robots/EntityRobotEnergyFX.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/buildcraft/core/robots/EntityRobotEnergyFX.java b/common/buildcraft/core/robots/EntityRobotEnergyFX.java index 461fe779..3594a7c3 100755 --- a/common/buildcraft/core/robots/EntityRobotEnergyFX.java +++ b/common/buildcraft/core/robots/EntityRobotEnergyFX.java @@ -81,7 +81,7 @@ public class EntityRobotEnergyFX extends EntityFX { if (this.posY == this.prevPosY) { this.motionX *= 1.1D; - this.motionY *= 1.1D; + this.motionY = 0.001D; this.motionZ *= 1.1D; }