diff options
Diffstat (limited to 'source/game/StarSystemWorldServerThread.cpp')
-rw-r--r-- | source/game/StarSystemWorldServerThread.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/source/game/StarSystemWorldServerThread.cpp b/source/game/StarSystemWorldServerThread.cpp index 4586889..3ec26a7 100644 --- a/source/game/StarSystemWorldServerThread.cpp +++ b/source/game/StarSystemWorldServerThread.cpp @@ -5,9 +5,11 @@ namespace Star { SystemWorldServerThread::SystemWorldServerThread(Vec3I const& location, SystemWorldServerPtr systemWorld, String storageFile) - : Thread(strf("SystemWorldServer: {}", location)), m_stop(false), m_storageFile(storageFile) { - m_systemLocation = location; - m_systemWorld = std::move(systemWorld); + : Thread(strf("SystemWorldServer: {}", location)) + , m_systemLocation(location) + , m_systemWorld(move(systemWorld)) + , m_storageFile(storageFile) +{ } SystemWorldServerThread::~SystemWorldServerThread() { |