Paste not found.
Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Submitted on June 13, 2016 at 07:40 PM

Section 1 (Text)

package sokratis12GR.ArmorPlus.registry;

import net.minecraft.block.Block;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.item.Item;
import net.minecraftforge.client.model.ModelLoader;
import net.minecraftforge.fml.common.registry.GameRegistry;
import sokratis12GR.ArmorPlus.ArmorPlus;
import sokratis12GR.ArmorPlus.blocks.LavaCrystal;
import sokratis12GR.ArmorPlus.util.TextHelper;

import static sokratis12GR.ArmorPlus.ArmorPlus.logger;

/**
 * sokratis12GR.ArmorPlus.registry
 * ArmorPlus created by sokratis12GR on 6/13/2016 9:39 PM.
 */
public class ModBlocks {

    public static Block LAVA_CRYSTAL;

    public static void init() {
        LAVA_CRYSTAL = new LavaCrystal();
    }

    public static void register() {
        registerBlock(LAVA_CRYSTAL);
    }

    public static void registerRenders() {
        registerRender(LAVA_CRYSTAL);
    }

    public static void registerBlock(Block block) {
        GameRegistry.registerBlock(block, block.getUnlocalizedName().substring(5));
        logger.info(TextHelper.localize("info." + ArmorPlus.MODID + ".console.load.blocks"));
    }

    public static void registerRender(Block block) {
        Item item = Item.getItemFromBlock(block);
        ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation("armorplus:CompressedObsidian", "inventory"));

    }
}