Package erogenousbeef.bigreactors.common.multiblock.block

Examples of erogenousbeef.bigreactors.common.multiblock.block.BlockMBCreativePart


  public static void registerCreativeParts(int id, boolean require) {
    BRConfig.CONFIGURATION.load();
   
    boolean regCreativeParts = BRConfig.CONFIGURATION.get("General", "registerCreativeMultiblockParts", true, "If true, creative parts for reactors, turbines and other multiblocks will be registered.").getBoolean(true);
    if(regCreativeParts && BigReactors.blockMultiblockCreativePart == null) {
      BigReactors.blockMultiblockCreativePart = new BlockMBCreativePart(Material.iron);
      GameRegistry.registerBlock(BigReactors.blockMultiblockCreativePart, ItemBlockBigReactors.class, "BRMultiblockCreativePart");
    }
   
    BRConfig.CONFIGURATION.save();
  }
View Full Code Here

TOP

Related Classes of erogenousbeef.bigreactors.common.multiblock.block.BlockMBCreativePart

Copyright © 2018 www.massapicom. 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.