/** * Register new sub-type, may replace existing sub-types. Should be used only if you know what are * you doing, it will not create fully usable material. * * @param element sub-type to register */ public static void register(final BakedPotatoMat element) { byID.put(element.getType(), element); byName.put(element.getTypeName(), element); }
@Override public BakedPotatoMat[] types() { return BakedPotatoMat.bakedPotatoTypes(); }
static { BakedPotatoMat.register(BAKED_POTATO); }