Package net.citizensnpcs.resources.npclib.creatures

Examples of net.citizensnpcs.resources.npclib.creatures.CreatureNPC


    public boolean update(Event event, ObjectiveProgress progress) {
        if (event instanceof EntityDeathEvent) {
            EntityDeathEvent ev = (EntityDeathEvent) event;
            HumanNPC npc = NPCManager.get(ev.getEntity());
            if (npc == null) {
                CreatureNPC cNPC = CreatureTask.getCreature(ev.getEntity());
                if (cNPC != null)
                    npc = cNPC.npc;
            }
            if (npc != null) {
                String search = progress.getObjective().getString().toLowerCase();
View Full Code Here

TOP

Related Classes of net.citizensnpcs.resources.npclib.creatures.CreatureNPC

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.