aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/blocks/GT_Item_Casings9.java
blob: e9b39ee2cdb63ee47b8c08412622b7b2aae0ad70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package gregtech.common.blocks;

import net.minecraft.block.Block;

/**
 * The casings are split into separate files because they are registered as regular blocks, and a regular block can have
 * 16 subtypes at most.
 */
public class GT_Item_Casings9 extends GT_Item_Casings_Abstract {

    public GT_Item_Casings9(Block block) {
        super(block);
    }

    /*
     * @Override
     * public void addInformation(ItemStack aStack, EntityPlayer aPlayer, List<String> aList, boolean aF3_H) {
     * // Add tooltip info if it was given
     * String localizedTooltip = GT_LanguageManager.getTranslation(aStack.getUnlocalizedName() + ".tooltip");
     * // getTranslation returns the key if no translation was found, but this just means
     * // no tooltip was set.
     * if (localizedTooltip.startsWith("gt.")) {
     * aList.add(localizedTooltip);
     * }
     * super.addInformation(aStack, aPlayer, aList, aF3_H);
     * }
     */
}