Examples of IManaCollector


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
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.