Examples of retrievePollen()


Examples of forestry.api.apiculture.IBee.retrievePollen()

    // Plant a flower
    queen.plantFlowerRandom(housing);
    // Get pollen if none available yet
    if (pollen == null) {
      pollen = queen.retrievePollen(housing);
      attemptedPollinations = 0;
      if (pollen != null) {
        if (housing.onPollenRetrieved(queen, pollen, false))
          pollen = null;
      }
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.