From f3359f619a08dac9251c94b6a84ddf089b9177c3 Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Thu, 10 Jul 2014 17:25:04 -0500 Subject: [PATCH] Insure that the tile entity was not invalidated before initing it. --- hooks/TickHandler.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hooks/TickHandler.java b/hooks/TickHandler.java index 0b856428f..51d220ca1 100644 --- a/hooks/TickHandler.java +++ b/hooks/TickHandler.java @@ -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.