Examples of ChunkLoadingHandler


Examples of com.flansmod.common.teams.ChunkLoadingHandler

    EntityRegistry.registerGlobalEntityID(EntityAAGun.class, "AAGun", EntityRegistry.findGlobalUniqueEntityId());
    EntityRegistry.registerModEntity(EntityAAGun.class, "AAGun", 92, this, 40, 500, false);
   
    //Register the chunk loader
    //TODO : Re-do chunk loading
    ForgeChunkManager.setForcedChunkLoadingCallback(this, new ChunkLoadingHandler());

    //Config
        FMLCommonHandler.instance().bus().register(INSTANCE);
    log("Loading complete.");
  }
View Full Code Here

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

        ModLoader.setInGUIHook(this, true, true);
        ModLoader.registerKey(this, laserKeyBinding, false);
        ModLoader.addLocalization("laserKeyBinding", "Turn on/off chunk loader boundries");

        MinecraftForge.setGuiHandler(this, new GuiHandler());
        MinecraftForge.registerChunkLoadHandler(new ChunkLoadingHandler());
        MinecraftForge.registerConnectionHandler(new NetworkHandler());

    }
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.