From 16c7369589c6134feb57071e8b456d3eecd2b491 Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Thu, 28 Aug 2014 03:37:24 -0500 Subject: [PATCH] Fixed broken canUpdate Check. --- tile/AEBaseTile.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tile/AEBaseTile.java b/tile/AEBaseTile.java index 61629bfc..33cf86eb 100644 --- a/tile/AEBaseTile.java +++ b/tile/AEBaseTile.java @@ -74,7 +74,7 @@ public class AEBaseTile extends TileEntity implements IOrientable, ICommonTile, protected boolean hasHandlerFor(TileEventType type) { List list = getHandlerListFor( type ); - return list != null; + return list != null && !list.isEmpty(); } protected List getHandlerListFor(TileEventType type)