blob: 19c2ace122e1c801935e1ecfe352247019f7122c (
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
|
package items;
import cpw.mods.fml.common.registry.GameRegistry;
import thaumcraft.common.blocks.ItemJarFilled;
public class Item_IchorJarFilled extends ItemJarFilled {
private static final Item_IchorJarFilled instance = new Item_IchorJarFilled();
private Item_IchorJarFilled() {
super();
}
public static Item_IchorJarFilled getInstance() {
return instance;
}
public void registerItem() {
super.setHasSubtypes(false);
final String unlocalizedName = "kekztech_ichorjarfilled_item";
super.setUnlocalizedName(unlocalizedName);
GameRegistry.registerItem(getInstance(), unlocalizedName);
}
}
|