Examples of LogTurner


Examples of bunyan.items.LogTurner

  }

  public static void initialize() {
    final int turnerID = Config.getOrCreateIntProperty(
        "logturner.id", Configuration.CATEGORY_ITEM, 7858);
    BunyanItem.logTurner = new LogTurner(turnerID)
        .setItemName("log.turner");
  }
View Full Code Here

Examples of extrabiomes.items.LogTurner

    private static void createLogTurner()
    {
        if (!ModuleControlSettings.SUMMA.isEnabled() || !ItemSettings.LOGTURNER.getEnabled())
            return;
       
        final LogTurner logTurner = new LogTurner();
       
        Stuff.logTurner = Optional.of(logTurner);
       
        logTurner.setUnlocalizedName("extrabiomes.logturner").setCreativeTab(Extrabiomes.tabsEBXL);
       
        GameRegistry.registerItem(logTurner, "extrabiomes.logturner", Reference.MOD_ID);
       
        Element.LOGTURNER.set(new ItemStack(logTurner));
    }
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.