Prevent a crash when the two agent dictionaries get out of sync

soprefactor
Melanie 2010-05-16 20:31:02 +01:00
parent 2fb79646c6
commit a6023ea89e
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ namespace OpenSim.Framework
else
{
AgentCircuits.Add(circuitCode, agentData);
AgentCircuitsByUUID.Add(agentData.AgentID, agentData);
AgentCircuitsByUUID[agentData.AgentID] = agentData;
}
}
}