Fixes #2406: Not 100% satisfied with how it renders the item being crafted yet, but more cented than before.

This commit is contained in:
Sebastian Hartte
2016-10-03 03:29:52 +02:00
parent 6933173957
commit 5493757d25
2 changed files with 7 additions and 3 deletions
@@ -259,7 +259,7 @@ public class ClientHelper extends ServerHelper
{
final PacketAssemblerAnimation paa = (PacketAssemblerAnimation) o;
final AssemblerFX fx = new AssemblerFX( Minecraft.getMinecraft().theWorld, posX, posY, posZ, 0.0D, 0.0D, 0.0D, paa.rate, paa.is );
final AssemblerFX fx = new AssemblerFX( worldObj, posX, posY, posZ, 0.0D, 0.0D, 0.0D, paa.rate, paa.is );
Minecraft.getMinecraft().effectRenderer.addEffect( fx );
}