(int x, int z, int offset)
| 364 | } |
| 365 | |
| 366 | private void setOffset(int x, int z, int offset) throws IOException { |
| 367 | this.offsets[x + z * 32] = offset; |
| 368 | this.file.seek((x + z * 32) * 4); |
| 369 | this.file.writeInt(offset); |
| 370 | } |
| 371 | |
| 372 | private void setTimestamp(int x, int z, int value) throws IOException { |
| 373 | this.chunkTimestamps[x + z * 32] = value; |