* Tweak the caps manager so that the NPCAvatar works again.

This commit is contained in:
Teravus Ovares
2009-08-01 14:26:00 +00:00
parent 4ce5c894cf
commit 4cbf0444df
5 changed files with 52 additions and 13 deletions

View File

@@ -581,7 +581,10 @@ namespace OpenSim.Region.CoreModules.World.Land
}
lock (m_landIDList)
{
return m_landList[m_landIDList[x / 4, y / 4]];
if (m_landList.ContainsKey(m_landIDList[x / 4, y / 4]))
return m_landList[m_landIDList[x / 4, y / 4]];
else
return null;
}
}