Package buildcraft.factory.network

Examples of buildcraft.factory.network.PacketHandlerFactory


  }

  @Mod.EventHandler
  public void initialize(FMLPreInitializationEvent evt) {
    channels = NetworkRegistry.INSTANCE.newChannel
        (DefaultProps.NET_CHANNEL_NAME + "-FACTORY", new BuildCraftChannelHandler(), new PacketHandlerFactory());

    ConfigUtils genCat = new ConfigUtils(BuildCraftCore.mainConfiguration, Configuration.CATEGORY_GENERAL);

    allowMining = genCat.get("mining.enabled", true, "disables the recipes for automated mining machines");
    quarryOneTimeUse = genCat.get("quarry.one.time.use", false, "Quarry cannot be picked back up after placement");
View Full Code Here

TOP

Related Classes of buildcraft.factory.network.PacketHandlerFactory

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.