| 453 | } |
| 454 | |
| 455 | ByteArray WorldStorage::writeWorldMetadata(WorldMetadataStore const& metadata) { |
| 456 | DataStreamBuffer ds; |
| 457 | |
| 458 | ds.write(metadata.worldSize); |
| 459 | ds.write(metadata.userMetadata); |
| 460 | |
| 461 | return compressData(ds.data()); |
| 462 | } |
| 463 | |
| 464 | ByteArray WorldStorage::entitySectorKey(Sector const& sector) { |
| 465 | DataStreamBuffer ds(5); |
nothing calls this directly
no test coverage detected