Insure that the tile entity was not invalidated before initing it.
This commit is contained in:
parent
d5989750b4
commit
f3359f619a
1 changed files with 2 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue