diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-18 17:48:34 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-18 17:48:34 +0100 |
commit | b426d61f903fa4dd635fb525eb4c28ca1c1d1929 (patch) | |
tree | b941499890be0698f3138866c94677a86fcd59e6 /serialize/world-reader.cpp | |
parent | a418f0571231a429b8e0adfea7e09c2f81856a57 (diff) |
src: fix scenery mesh modified marking
Diffstat (limited to 'serialize/world-reader.cpp')
-rw-r--r-- | serialize/world-reader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/serialize/world-reader.cpp b/serialize/world-reader.cpp index 4b050bc2..1b32204f 100644 --- a/serialize/world-reader.cpp +++ b/serialize/world-reader.cpp @@ -234,7 +234,7 @@ void reader_state::read_chunks(reader_t& s) if (!(id & meta_short_scenery_bit)) read_offsets(s, proto); SET_CHUNK_SIZE(); - auto e = _world->make_entity<character>(oid, {ch, local}, proto); + auto e = _world->make_entity<character, false>(oid, {ch, local}, proto); (void)e; break; } |