Merge branch 'master' of https://bitbucket.org/AlgorithmX2/appliedenergistics2 into rv1
This commit is contained in:
commit
0e59831fd6
2 changed files with 7 additions and 3 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue