(int x, int z, int value)
| 370 | } |
| 371 | |
| 372 | private void setTimestamp(int x, int z, int value) throws IOException { |
| 373 | this.chunkTimestamps[x + z * 32] = value; |
| 374 | this.file.seek(RegionFile.SECTOR_BYTES + (x + z * 32) * 4); |
| 375 | this.file.writeInt(value); |
| 376 | } |
| 377 | |
| 378 | public void close() throws IOException { |
| 379 | this.file.close(); |