Global ID -> Id rename

This commit is contained in:
Erik Broes
2011-01-15 20:53:20 +01:00
parent e4a31ce206
commit dea72d6623
11 changed files with 87 additions and 71 deletions

View File

@@ -41,7 +41,7 @@ public abstract class CraftEntity implements org.bukkit.Entity {
teleportTo(destination.getLocation());
}
public int getEntityID() {
public int getEntityId() {
return entity.g;
}
@@ -81,6 +81,6 @@ public abstract class CraftEntity implements org.bukkit.Entity {
@Override
public String toString() {
return "CraftEntity{" + "id=" + getEntityID() + '}';
return "CraftEntity{" + "id=" + getEntityId() + '}';
}
}