Examples of callDeathEvent()


Examples of net.citizensnpcs.resources.npclib.HumanNPC.callDeathEvent()

    @EventHandler(ignoreCancelled = true)
    public void onEntityDeath(EntityDeathEvent event) {
        CreatureTask.onEntityDeath(event.getEntity());
        if (NPCManager.isNPC(event.getEntity())) {
            HumanNPC npc = NPCManager.get(event.getEntity());
            npc.callDeathEvent(event);
            NPCManager.removeForRespawn(npc.getUID());
        }
    }

    @EventHandler
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.