Package vazkii.botania.api.mana

Examples of vazkii.botania.api.mana.IManaCollector


    this.mana = Math.min(getMaxMana(), this.mana + mana);
  }

  public void emptyManaIntoCollector() {
    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);
      }
    }
  }

TOP

Related Classes of vazkii.botania.api.mana.IManaCollector

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.