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,8 +467,8 @@ public class Vector {
*/
public boolean containedWithin(Vector min, Vector max) {
return x >= min.getX() && x <= max.getX()
&& y >= min.getY() && z <= max.getY()
&& z >= min.getZ() && z <= max.getY();
&& y >= min.getY() && y <= max.getY()
&& z >= min.getZ() && z <= max.getZ();
}
/**