Examples of IArboristTracker


Examples of forestry.api.arboriculture.IArboristTracker

    statistics.add("");
    statistics.add("MODE: " + PluginArboriculture.treeInterface.getTreekeepingMode(world).getName());
    statistics.add("");

    GameProfile profile = MinecraftServer.getServer().func_152358_ax().func_152655_a(player);
    IArboristTracker tracker = PluginArboriculture.treeInterface.getBreedingTracker(world, profile);
    if (tracker == null)
      statistics.add("No statistics found.");
    else {
      statistics.add("BRED:");
      statistics.add("-----");
View Full Code Here

Examples of forestry.api.arboriculture.IArboristTracker

  public ITreekeepingMode getTreekeepingMode(World world) {
    if (activeTreekeepingMode != null)
      return activeTreekeepingMode;

    // No Treekeeping mode yet, item it.
    IArboristTracker tracker = getBreedingTracker(world, null);
    String mode = tracker.getModeName();
    if (mode == null || mode.isEmpty())
      mode = PluginArboriculture.treekeepingMode;

    setTreekeepingMode(world, mode);
    FMLCommonHandler.instance().getFMLLogger().debug("Set Treekeeping mode for a world to " + mode);
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.