Package net.minecraft.src.buildcraft.additionalpipes.chunkloader

Examples of net.minecraft.src.buildcraft.additionalpipes.chunkloader.BlockChunkLoader


        int ChunkLoaderID = Integer.parseInt(config.getOrCreateIntProperty("TeleportTether.id", Configuration.CATEGORY_BLOCK, DEFUALT_CHUNK_LOADER_ID).value);
        boolean Craftable = Boolean.parseBoolean(config.getOrCreateBooleanProperty("TeleportTether.Enabled", Configuration.CATEGORY_BLOCK, true).value);
        config.save();
       
        ModLoader.registerTileEntity(net.minecraft.src.buildcraft.additionalpipes.chunkloader.TileChunkLoader.class, "Teleport Tether");
        blockChunkLoader = new BlockChunkLoader(ChunkLoaderID, 0);
        ModLoader.registerBlock(blockChunkLoader);
        blockChunkLoader.setBlockName("Teleport Tether");
        ModLoader.addName(blockChunkLoader, "Teleport Tether");
  
        if (Craftable) {
View Full Code Here

TOP

Related Classes of net.minecraft.src.buildcraft.additionalpipes.chunkloader.BlockChunkLoader

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.