All entity stuff in org.bukkit moved to org.bukkit.entity

This commit is contained in:
Dinnerbone
2011-01-15 21:21:05 +00:00
parent 34674e7793
commit d501bbf1a2
17 changed files with 93 additions and 92 deletions

View File

@@ -6,7 +6,7 @@ import org.bukkit.Location;
import org.bukkit.Vector;
import org.bukkit.World;
public abstract class CraftEntity implements org.bukkit.Entity {
public abstract class CraftEntity implements org.bukkit.entity.Entity {
protected final CraftServer server;
private Entity entity;
@@ -37,7 +37,7 @@ public abstract class CraftEntity implements org.bukkit.Entity {
entity.b(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch());
}
public void teleportTo(org.bukkit.Entity destination) {
public void teleportTo(org.bukkit.entity.Entity destination) {
teleportTo(destination.getLocation());
}