summaryrefslogtreecommitdiffhomepage
path: root/src/world.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/world.cpp')
-rw-r--r--src/world.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/world.cpp b/src/world.cpp
index 8c564007..9d669e62 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -21,6 +21,7 @@ world& world::operator=(world&& w) noexcept
_chunks = std::move(w._chunks);
_entities = std::move(w._entities);
_entity_counter = w._entity_counter;
+ _current_frame = w._current_frame;
w._entity_counter = 0;
for (auto& [id, c] : _chunks)