1
0
mirror of https://github.com/plexusorg/Plex-FAWE.git synced 2025-01-14 19:43:49 +00:00

Fixed error some people were having with BlockWorldVectors.

This commit is contained in:
Wizjany 2011-05-27 17:01:15 -04:00
parent 62a78994fd
commit 1c94265ba8

@ -63,7 +63,7 @@ public class BlockWorldVector extends WorldVector {
* @param v
*/
public BlockWorldVector(WorldVector world, Vector v) {
super(world.getWorld(), v.x, v.y, v.z);
super(world.getWorld(), v.getX(), v.getY(), v.getZ());
}
/**