This commit is contained in:
AlgorithmX2 2014-05-20 09:50:10 -05:00
commit 0e59831fd6
2 changed files with 7 additions and 3 deletions

View file

@ -199,9 +199,13 @@ public class Grid implements IGrid
public void update()
{
for (IGridCache gc : caches.values())
// are ther any nodes left?
if ( pivot != null )
{
gc.onUpdateTick();
for (IGridCache gc : caches.values())
{
gc.onUpdateTick();
}
}
}

View file

@ -47,7 +47,7 @@ public class AppEngCore extends DummyModContainer implements IFMLLoadingPlugin
@Override
public String[] getASMTransformerClass()
{
return new String[] { "appeng.transformer.asm.ASMIntegration", "appeng.transformer.asm.ASMMigration" };
return new String[] { "appeng.transformer.asm.ASMIntegration" };
}
@Override