use of com.magmaguy.elitemobs.api.NPCEntitySpawnEvent in project EliteMobs by MagmaGuy.
the class EntityTracker method registerNPCEntity.
public static void registerNPCEntity(NPCEntity npc) {
NPCEntitySpawnEvent npcEntitySpawnEvent = new NPCEntitySpawnEvent(npc.getVillager(), npc);
new EventCaller(npcEntitySpawnEvent);
if (npcEntitySpawnEvent.isCancelled())
return;
npcEntities.put(npc.getUuid(), npc);
PersistentTagger.tagNPC(npc.getVillager(), npc.getUuid());
}
Aggregations