Package com.nitnelave.CreeperHeal.utils

Examples of com.nitnelave.CreeperHeal.utils.ShortLocation


      if (block.getType() == Material.PORTAL)
        return;
     
        CreeperBlock cBlock = CreeperBlock.newBlock(block.getState());

        if (cBlock == null || checked.contains(new ShortLocation(block)))
            return;

        checked.add(new ShortLocation(block));

        if ((CreeperConfig.getBool(CfgVal.PREVENT_CHAIN_REACTION) && block.getType().equals(Material.TNT))
            || world.isProtected(block))
        {
            CreeperBlock b = CreeperBlock.newBlock(block.getState());
View Full Code Here

TOP

Related Classes of com.nitnelave.CreeperHeal.utils.ShortLocation

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.