use vector.add for compatibility with vs-flattened
flush before remember
share meta objects across players
fix wg compatibility
This commit is contained in:
Jesse Boyd
2019-11-02 19:31:32 +01:00
parent f8e1654a4e
commit b97b40e413
5 changed files with 84 additions and 5 deletions

View File

@ -779,4 +779,9 @@ public abstract class BlockVector3 {
return "(" + getX() + ", " + getY() + ", " + getZ() + ")";
}
//Used by VS fork
public BlockVector3 plus(BlockVector3 other) {
return add(other);
}
}