From ec310b957749d36ced26a6c99c2b9a8beabed965 Mon Sep 17 00:00:00 2001 From: Lynix Date: Sat, 22 Apr 2017 12:59:06 +0200 Subject: [PATCH] Sdk/Entity: Fix removed components sometimes not being removed --- SDK/src/NDK/Entity.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/SDK/src/NDK/Entity.cpp b/SDK/src/NDK/Entity.cpp index 7cdc87d07..7419ac627 100644 --- a/SDK/src/NDK/Entity.cpp +++ b/SDK/src/NDK/Entity.cpp @@ -24,6 +24,7 @@ namespace Ndk HandledObject(std::move(entity)), m_components(std::move(entity.m_components)), m_componentBits(std::move(entity.m_componentBits)), + m_removedComponentBits(std::move(entity.m_removedComponentBits)), m_systemBits(std::move(entity.m_systemBits)), m_id(entity.m_id), m_world(entity.m_world),