implement BlockPosWrapper offset

This commit is contained in:
James Seibel
2021-10-30 17:21:17 -05:00
parent 0c4ee74254
commit 79e6977bab
@@ -68,8 +68,8 @@ public class BlockPosWrapper
public BlockPosWrapper offset(int x, int y, int z)
{
// TODO Auto-generated method stub
return null;
blockPos.set(blockPos.getX() + x, blockPos.getY() + y, blockPos.getZ() + z);
return this;
}
}