All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sucy.skill.hook.CitizensHook Maven / Gradle / Ivy

Go to download

A Minecraft Bukkit plugin aiming to provide an easy code API and skill editor for all server owners to create unique and fully custom classes and skills.

There is a newer version: 1.3.1-R1
Show newest version
package com.sucy.skill.hook;

import org.bukkit.entity.Entity;

/**
 * Handles checking whether an entity is an NPC
 */
public class CitizensHook {
    public static boolean isNPC(Entity entity) {
        return entity.getClass().getName().equals("PlayerNPC");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy