Examples of dropItems()


Examples of appeng.tile.AEBaseTile.dropItems()

  {
    AEBaseTile te = getTileEntity( w, x, y, z );
    if ( te != null )
    {
      ArrayList<ItemStack> drops = new ArrayList<ItemStack>();
      if ( te.dropItems() )
        te.getDrops( w, x, y, z, drops );
      else
        te.getNoDrops( w, x, y, z, drops );

      // Cry ;_; ...
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.