Sdk/World: Fix movement

This commit is contained in:
Lynix 2017-08-31 19:39:45 +02:00
parent 092720b1d0
commit a85ded1262
1 changed files with 2 additions and 1 deletions

View File

@ -314,7 +314,8 @@ namespace Ndk
m_systems = std::move(world.m_systems);
for (const auto& systemPtr : m_systems)
systemPtr->SetWorld(this);
if (systemPtr)
systemPtr->SetWorld(this);
return *this;
}