mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-15 02:58:34 +00:00
Fixed error some people were having with BlockWorldVectors.
This commit is contained in:
@ -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());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user