diff --git a/tile/AEBaseTile.java b/tile/AEBaseTile.java index acf82e0bb..969da396b 100644 --- a/tile/AEBaseTile.java +++ b/tile/AEBaseTile.java @@ -395,6 +395,13 @@ public class AEBaseTile extends TileEntity implements IOrientable, ICommonTile, { NBTTagCompound output = new NBTTagCompound(); + if ( hasCustomName() ) + { + NBTTagCompound dsp = new NBTTagCompound(); + dsp.setString( "Name", getCustomName() ); + output.setTag( "display", dsp ); + } + if ( this instanceof IConfigureableObject ) { IConfigManager cm = ((IConfigureableObject) this).getConfigManager();