Package vazkii.botania.common.block.tile.mana

Examples of vazkii.botania.common.block.tile.mana.TilePool.recieveMana()


      if(tile instanceof TilePool) {
        TilePool pool = (TilePool) tile;
        if(pool.getCurrentMana() < cost)
          closeNow = true;
        else if(!worldObj.isRemote)
          pool.recieveMana(-cost);
      }
    }
  }

  private boolean check2DArray(int[][] positions, Block block, int meta, Function<int[], int[]>... converters) {
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.