Fixed a few clipboard related issues.

This commit is contained in:
Matthew Miller
2018-07-30 21:55:53 +10:00
parent db21f51a18
commit 521238b4eb
8 changed files with 24 additions and 28 deletions

View File

@ -37,7 +37,7 @@ public class BlockVector extends Vector {
* @param position the other position
*/
public BlockVector(Vector position) {
this(position.getBlockX(), position.getBlockY(), position.getBlockZ());
super(position);
}
/**
@ -59,7 +59,7 @@ public class BlockVector extends Vector {
* @param z the Z coordinate
*/
public BlockVector(float x, float y, float z) {
this((int) x, (int) y, (int) z);
super(x, y, z);
}
/**
@ -70,7 +70,7 @@ public class BlockVector extends Vector {
* @param z the Z coordinate
*/
public BlockVector(double x, double y, double z) {
this((int) x, (int) y, (int) z);
super(x, y, z);
}
@Override