Fixed the package structure
This commit is contained in:
18
src/org/mcteam/factions/util/EntityUtil.java
Normal file
18
src/org/mcteam/factions/util/EntityUtil.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package org.mcteam.factions.util;
|
||||
|
||||
import org.bukkit.entity.Creature;
|
||||
import org.bukkit.entity.CreatureType;
|
||||
import org.bukkit.entity.Entity;
|
||||
|
||||
public class EntityUtil {
|
||||
public static CreatureType creatureTypeFromEntity(Entity entity) {
|
||||
if ( ! (entity instanceof Creature)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
String name = entity.getClass().getSimpleName();
|
||||
name = name.substring(5); // Remove "Craft"
|
||||
|
||||
return CreatureType.fromName(name);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user