Fixed BukkitPlayer not returning a LocalWorld.

This commit is contained in:
sk89q 2011-01-04 12:21:35 -08:00
parent 1917c94592
commit 007d254978

View File

@ -124,8 +124,7 @@ public class BukkitPlayer extends LocalPlayer {
@Override
public LocalWorld getWorld() {
// TODO Auto-generated method stub
return null;
return new BukkitWorld(player.getWorld());
}
}