From 43b2ff1d112174c36bb18caf353945afc6390840 Mon Sep 17 00:00:00 2001
From: Justin Clarke Casey
Date: Fri, 1 Aug 2008 18:49:48 +0000
Subject: * Drop cached inventory from the local region when a user crosses out
into a remote region * May resolves inventory problems that occur when the
user moves between two regions` * e.g. if the user moves to a second region,
adds an inventory item, moves back to the original region then tries to
manipulate that item * Not yet implemented for teleport
---
OpenSim/Region/Environment/Scenes/Scene.cs | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
(limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index c4078c9..f81248b 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -1976,7 +1976,7 @@ namespace OpenSim.Region.Environment.Scenes
#region Add/Remove Avatar Methods
///
- ///
+ /// Register the new client with the scene
///
///
@@ -1991,7 +1991,7 @@ namespace OpenSim.Region.Environment.Scenes
if (m_restorePresences.ContainsKey(client.AgentId))
{
- m_log.Info("[REGION]: Restore Scene Presence");
+ m_log.Info("[REGION]: Restoring Scene Presence");
presence = m_restorePresences[client.AgentId];
m_restorePresences.Remove(client.AgentId);
@@ -2015,9 +2015,8 @@ namespace OpenSim.Region.Environment.Scenes
}
else
{
- m_log.Info("[REGION]: Add New Scene Presence");
+ m_log.Info("[REGION]: Adding New Scene Presence");
- //CommsManager.UserProfileCacheService.AddNewUser(client.AgentId);
CommsManager.UserProfileCacheService.AddNewUser(client);
CreateAndAddScenePresence(client, child);
--
cgit v1.1