From 5c360e7374d6d3529f7578195a86a13e3858389f Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Tue, 19 Aug 2008 13:07:24 +0000 Subject: Update svn properties, minor formatting cleanup. Remove old comment in SnapshotStore pointed out by ChrisDown (bug #2000) --- OpenSim/Region/Environment/Scenes/Scene.Inventory.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim/Region/Environment/Scenes/Scene.Inventory.cs') diff --git a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs index e145f4a..171868b 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs @@ -2331,11 +2331,11 @@ namespace OpenSim.Region.Environment.Scenes AttachmentPt = att.RootPart.AttachmentPoint; ScenePresence presence; - if(TryGetAvatar(remoteClient.AgentId, out presence)) + if (TryGetAvatar(remoteClient.AgentId, out presence)) { presence.Appearance.SetAttachment((int)AttachmentPt, itemID, att.UUID); IAvatarFactory ava = RequestModuleInterface(); - if(ava != null) + if (ava != null) { ava.UpdateDatabase(remoteClient.AgentId, presence.Appearance); } @@ -2346,11 +2346,11 @@ namespace OpenSim.Region.Environment.Scenes public void DetachSingleAttachmentToInv(LLUUID itemID, IClientAPI remoteClient) { ScenePresence presence; - if(TryGetAvatar(remoteClient.AgentId, out presence)) + if (TryGetAvatar(remoteClient.AgentId, out presence)) { presence.Appearance.DetachAttachment(itemID); IAvatarFactory ava = RequestModuleInterface(); - if(ava != null) + if (ava != null) { ava.UpdateDatabase(remoteClient.AgentId, presence.Appearance); } -- cgit v1.1