Examples of FirestoneTickHandler


Examples of mods.railcraft.common.items.firestone.FirestoneTickHandler

        ItemFirestoneRaw.registerItem();
        ItemFirestoneCut.registerItem();
        ItemFirestoneRefined.registerItem();
        ItemFirestoneCracked.registerItem();

        FMLCommonHandler.instance().bus().register(new FirestoneTickHandler());

        if (EnumOre.FIRESTONE.isEnabled() && ItemFirestoneRaw.item != null && ItemFirestoneCut.item != null) {
            IRockCrusherRecipe recipe = RailcraftCraftingManager.rockCrusher.createNewRecipe(EnumOre.FIRESTONE.getItem(), true, false);
            recipe.addOutput(ItemFirestoneRaw.getItem(), 1F);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.