1
0

Fixed crash on creating a world during plugin initialisation

This commit is contained in:
worktycho 2014-05-05 16:06:45 +01:00
parent bde40af406
commit ef85bef978

View File

@ -109,7 +109,7 @@ void cDeadlockDetect::CheckWorldAge(const AString & a_WorldName, Int64 a_Age)
WorldAges::iterator itr = m_WorldAges.find(a_WorldName);
if (itr == m_WorldAges.end())
{
ASSERT(!"Unknown world in cDeadlockDetect");
SetWorldAge(a_WorldName, a_Age);
return;
}