From 5fb7b485b211bbf19f4531a051b78dde92da4ba3 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Fri, 19 Sep 2008 17:41:21 +0000 Subject: * Only allow logins on standalone when the sim has completed it's initial startup (script startup doesn't count here) * There was a small window where region logins were allowed before modules were loaded - avatars logins that hit this window could have caused bad things to happen. * A similar change will follow for grid mode sometime soon --- OpenSim/Region/Environment/Scenes/Scene.Inventory.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/Environment') diff --git a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs index 36f86eb..5d55075 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs @@ -500,7 +500,7 @@ namespace OpenSim.Region.Environment.Scenes "[AGENT INVENTORY]: CopyInventoryItem received by {0} with oldAgentID {1}, oldItemID {2}, new FolderID {3}, newName {4}", remoteClient.AgentId, oldAgentID, oldItemID, newFolderID, newName); - InventoryItemBase item = CommsManager.UserProfileCacheService.libraryRoot.FindItem(oldItemID); + InventoryItemBase item = CommsManager.UserProfileCacheService.LibraryRoot.FindItem(oldItemID); if (item == null) { @@ -1207,7 +1207,7 @@ namespace OpenSim.Region.Environment.Scenes // XXX clumsy, possibly should be one call if (null == item) { - item = CommsManager.UserProfileCacheService.libraryRoot.FindItem(itemID); + item = CommsManager.UserProfileCacheService.LibraryRoot.FindItem(itemID); } if (item != null) @@ -1272,7 +1272,7 @@ namespace OpenSim.Region.Environment.Scenes // XXX clumsy, possibly should be one call if (null == item) { - item = CommsManager.UserProfileCacheService.libraryRoot.FindItem(itemID); + item = CommsManager.UserProfileCacheService.LibraryRoot.FindItem(itemID); } if (item != null) -- cgit v1.1