Fixed HMPlayer.getSolidBlockTrace() and HMPlayer.getBlockTrace() returning null for the world. Changed LocalPlayer.findFreePosition() to take a WorldVector instead.

This commit is contained in:
sk89q
2011-01-09 09:25:24 -08:00
parent 03cf12fcfd
commit d997dbac2b
4 changed files with 8 additions and 7 deletions

View File

@ -467,7 +467,7 @@ public class WorldEditController {
checkArgs(split, 0, 0, split[0]);
WorldVector pos = player.getSolidBlockTrace(300);
if (pos != null) {
player.findFreePosition(pos.getWorld(), pos);
player.findFreePosition(pos);
player.print("Poof!");
} else {
player.printError("No block in sight!");