1
0

That 2nd assert didn't make much sense...

git-svn-id: http://mc-server.googlecode.com/svn/trunk@320 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
faketruth 2012-02-22 20:40:32 +00:00
parent 3ca9b52ab2
commit 3de5480191

View File

@ -60,7 +60,8 @@ cEntity::~cEntity()
if( !m_bDestroyed || !m_bRemovedFromChunk )
{
ASSERT(!"Entity deallocated without being destroyed %i or unlinked %i", m_bDestroyed, m_bRemovedFromChunk );
LOGERROR("ERROR: Entity deallocated without being destroyed %i or unlinked %i", m_bDestroyed, m_bRemovedFromChunk );
ASSERT(!"Entity deallocated without being destroyed or unlinked");
}
delete m_Referencers;
delete m_References;