diff options
Diffstat (limited to 'src/components.cpp')
-rw-r--r-- | src/components.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components.cpp b/src/components.cpp index fb0977f..a7d504d 100644 --- a/src/components.cpp +++ b/src/components.cpp @@ -162,6 +162,7 @@ void DialogSystem::configure(entityx::EventManager &ev) void DialogSystem::receive(const MouseClickEvent &mce) { + game::entities.lock(); game::entities.each<Position, Solid, Dialog, Name>( [&](entityx::Entity e, Position &pos, Solid &dim, Dialog &d, Name &name) { static std::atomic_bool dialogRun; @@ -270,6 +271,7 @@ void DialogSystem::receive(const MouseClickEvent &mce) } } }); + game::entities.unlock(); } void DialogSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) |