Added World.getName and World.getId

This commit is contained in:
Dinnerbone 2011-01-08 02:29:57 +00:00
parent 81f920d927
commit 603156ea29

View File

@ -190,6 +190,14 @@ public class CraftWorld implements World {
return world.l(x, y, z);
}
public String getName() {
return world.w;
}
public long getId() {
return world.u;
}
@Override
public String toString() {
return "CraftWorld";