Fix particles

This commit is contained in:
Aidan Brady 2013-12-09 17:00:21 -05:00
parent a1e1c06bcd
commit 7506b8fed8

View file

@ -166,8 +166,11 @@ public class RenderTickHandler implements ITickHandler
fx = new EntitySmokeFX(world, x, y, z, velX, velY, velZ);
}
fx.prevPosX = fx.posX = x;
fx.prevPosY = fx.posY = y;
fx.prevPosZ = fx.posZ = z;
mc.effectRenderer.addEffect(fx);
fx.onUpdate();
}
@Override