mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-12-26 18:49:06 +00:00
Fix add issue with blockdata
This commit is contained in:
@@ -97,7 +97,7 @@ public class BlockPosition {
|
||||
}
|
||||
|
||||
public BlockPosition add(int x, int y, int z) {
|
||||
return new BlockPosition(x, y, z);
|
||||
return new BlockPosition(this.x + x, this.y + y, this.z + z);
|
||||
}
|
||||
|
||||
public void min(BlockPosition i) {
|
||||
|
||||
Reference in New Issue
Block a user