Package forestry.apiculture.gui

Examples of forestry.apiculture.gui.ContainerApiary


    case ApiaristChestGUI:
      return getNaturalistChestContainer(BeeHelper.UID, player, world, x, y, z, guiData);

    case ApiaryGUI:
      synchApiaristTracker(world, player);
      return new ContainerApiary(player.inventory, (TileApiary) getTileForestry(world, x, y, z), true);

    case BeealyzerGUI:
      equipped = getEquippedItem(player);
      if (equipped == null)
        return null;

      synchApiaristTracker(world, player);
      return new ContainerBeealyzer(player.inventory, new BeealyzerInventory(player, equipped));

    case BeehouseGUI:
      synchApiaristTracker(world, player);
      return new ContainerApiary(player.inventory, (TileBeehouse) getTileForestry(world, x, y, z), false);

    case HabitatLocatorGUI:
      equipped = getEquippedItem(player);
      if (equipped == null)
        return null;
View Full Code Here

TOP

Related Classes of forestry.apiculture.gui.ContainerApiary

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.