Initial implementation of lpxclient

This commit is contained in:
2021-11-09 16:27:39 -05:00
parent 6172fb983c
commit 051e6bc8bf
7 changed files with 229 additions and 29 deletions

View File

@@ -277,12 +277,13 @@ void World::diff_source(World *master, StreamBuffer *sb) {
source_db_.diff(master->source_db_, sb);
}
void World::patch_everything(StreamBuffer *sb) {
patch_actor(sb);
int64_t World::patch_everything(StreamBuffer *sb) {
int64_t actor_id = patch_actor(sb);
patch_visible(sb);
patch_luatabs(sb);
patch_tanclass(sb);
patch_source(sb);
return actor_id;
}
void World::diff_everything(int64_t actor_id, World *master, StreamBuffer *sb) {