Fixed broken canUpdate Check.

This commit is contained in:
AlgorithmX2 2014-08-28 03:37:24 -05:00
parent 489d6e4262
commit 16c7369589

View file

@ -74,7 +74,7 @@ public class AEBaseTile extends TileEntity implements IOrientable, ICommonTile,
protected boolean hasHandlerFor(TileEventType type)
{
List<AETileEventHandler> list = getHandlerListFor( type );
return list != null;
return list != null && !list.isEmpty();
}
protected List<AETileEventHandler> getHandlerListFor(TileEventType type)