Package com.nitnelave.CreeperHeal.config

Examples of com.nitnelave.CreeperHeal.config.WorldConfig


     *            The EntityBreakDoor event.
     */
    @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
    public void onEntityBreakDoor(EntityBreakDoorEvent event)
    {
        WorldConfig world = CreeperConfig.getWorld(event.getBlock().getWorld());
        if (event.getEntityType() == EntityType.ZOMBIE && world.getBool(WCfgVal.ZOMBIE_DOOR))
        {
            CreeperLog.displayBlockLocation(event.getBlock(), false);
            BurntBlockManager.recordBurntBlock(event.getBlock());
        }
    }
View Full Code Here

TOP

Related Classes of com.nitnelave.CreeperHeal.config.WorldConfig

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.