mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-24 10:17:39 +00:00
Fixed error some people were having with BlockWorldVectors.
This commit is contained in:
parent
62a78994fd
commit
1c94265ba8
@ -63,7 +63,7 @@ public class BlockWorldVector extends WorldVector {
|
|||||||
* @param v
|
* @param v
|
||||||
*/
|
*/
|
||||||
public BlockWorldVector(WorldVector world, Vector 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());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user