removed debug garbage

This commit is contained in:
MihailRis
2024-02-18 19:07:58 +03:00
parent 526979fa0b
commit 6953724b0f
2 changed files with 1 additions and 9 deletions
+1 -1
View File
@@ -219,7 +219,7 @@ void WorldFiles::put(Chunk* chunk){
for (auto& entry : inventories) {
builder.putInt32(entry.first);
auto map = entry.second->serialize();
auto bytes = json::to_binary(map.get(), false);
auto bytes = json::to_binary(map.get(), true);
builder.putInt32(bytes.size());
builder.put(bytes.data(), bytes.size());
}