From 8bd3ccf4cfcc64795c7731b9c7f9c236fcd8f7fd Mon Sep 17 00:00:00 2001 From: sippeangelo Date: Mon, 1 Jun 2015 23:11:38 +0200 Subject: [PATCH] HACK: Disabled Entity ID recycling since something, somewhere doesn't care and makes us crash --- Escape-the-Dawn/World.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Escape-the-Dawn/World.cpp b/Escape-the-Dawn/World.cpp index 8cb255c..3abad33 100644 --- a/Escape-the-Dawn/World.cpp +++ b/Escape-the-Dawn/World.cpp @@ -87,7 +87,8 @@ void World::ProcessEntityRemovals() } m_EntityComponents.erase(entity); - RecycleEntityID(entity); + // HACK: Disabled Entity ID recycling since something, somewhere doesn't care and makes us crash + //RecycleEntityID(entity); } m_EntitiesToRemove.clear(); }