Fixed broken canUpdate Check.
This commit is contained in:
parent
489d6e4262
commit
16c7369589
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue