Insure that the tile entity was not invalidated before initing it.

This commit is contained in:
AlgorithmX2 2014-07-10 17:25:04 -05:00
parent d5989750b4
commit f3359f619a

View file

@ -170,7 +170,8 @@ public class TickHandler
while (!repo.tiles.isEmpty())
{
AEBaseTile bt = repo.tiles.poll();
bt.onReady();
if (! bt.isInvalid() )
bt.onReady();
}
// tick networks.