Package org.bukkit.event.entity.EntityRegainHealthEvent

Examples of org.bukkit.event.entity.EntityRegainHealthEvent.RegainReason


    @EventHandler
    public void entityRegainHealth(EntityRegainHealthEvent event) {
        if (event.isCancelled()) {
            return;
        }
        RegainReason reason = event.getRegainReason();
        MultiverseWorld world = this.worldManager.getMVWorld(event.getEntity().getLocation().getWorld());
        if (world != null && reason == RegainReason.REGEN && !world.getAutoHeal()) {
            event.setCancelled(true);
        }
    }
View Full Code Here

TOP

Related Classes of org.bukkit.event.entity.EntityRegainHealthEvent.RegainReason

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.