Package org.bukkit.block

Examples of org.bukkit.block.DoubleChest


      location = h.getLocation();
      holderDescription = h.getType().toString();
    }
    else if (holder instanceof DoubleChest)
    {
      DoubleChest c = (DoubleChest) holder;
      location = c.getLocation();
      holderDescription = "double chest";
    }
    else if (holder instanceof Entity)
    {
      Entity e = (Entity) holder;
View Full Code Here

TOP

Related Classes of org.bukkit.block.DoubleChest

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.