This commit is contained in:
AlgorithmX2
2014-05-20 09:50:10 -05:00
2 changed files with 7 additions and 3 deletions
+6 -2
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();
}
}
}
+1 -1
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