mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 10:12:53 +00:00
Fix add issue with blockdata
This commit is contained in:
parent
cf61080980
commit
a9e5e40a54
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user