Package vazkii.botania.api.mana

Examples of vazkii.botania.api.mana.IManaCollector.recieveMana()


    if(linkedCollector != null) {
      IManaCollector collector = (IManaCollector) linkedCollector;
      if(!collector.isFull() && mana > 0) {
        int manaval = Math.min(mana, collector.getMaxMana() - collector.getCurrentMana());
        mana -= manaval;
        collector.recieveMana(manaval);
      }
    }
  }

  public boolean isPassiveFlower() {
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.