Safe zones and faction homes :D :D

This commit is contained in:
Olof Larsson
2011-03-23 17:39:56 +01:00
parent 9d4aaeae6c
commit b0f09db054
39 changed files with 562 additions and 334 deletions

View File

@@ -0,0 +1,18 @@
package com.bukkit.mcteam.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);
}
}