use of com.magmaguy.elitemobs.api.SuperMobSpawnEvent in project EliteMobs by MagmaGuy.
the class EntityTracker method registerSuperMob.
// Super Mobs
public static void registerSuperMob(LivingEntity livingEntity) {
SuperMobSpawnEvent superMobSpawnEvent = new SuperMobSpawnEvent(livingEntity);
new EventCaller(superMobSpawnEvent);
if (superMobSpawnEvent.isCancelled())
return;
PersistentTagger.tagSuperMob(livingEntity);
}
Aggregations