use of forestry.greenhouse.blocks.BlockClimatiser in project ForestryMC by ForestryMC.
the class TileClimatiser method getUnlocalizedTitle.
@Override
public String getUnlocalizedTitle() {
Block block = getBlockType();
String blockUnlocalizedName = block.getUnlocalizedName();
if (block instanceof BlockClimatiser) {
blockUnlocalizedName += '.' + ((BlockClimatiser) block).getNameFromMeta(getBlockMetadata());
}
return blockUnlocalizedName + ".name";
}
Aggregations