aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes
diff options
context:
space:
mode:
authorDr Scofield2008-11-06 13:13:08 +0000
committerDr Scofield2008-11-06 13:13:08 +0000
commit09f86d7e99a4c577a2f6e2c650ad430a45c86aca (patch)
treecc3d8774c7256c0a08e6c65aba92f5cb55ceb0bf /OpenSim/Region/Environment/Scenes
parentFrom: Christopher Yeoh <cyeoh@au1.ibm.com> (diff)
downloadopensim-SC_OLD-09f86d7e99a4c577a2f6e2c650ad430a45c86aca.zip
opensim-SC_OLD-09f86d7e99a4c577a2f6e2c650ad430a45c86aca.tar.gz
opensim-SC_OLD-09f86d7e99a4c577a2f6e2c650ad430a45c86aca.tar.bz2
opensim-SC_OLD-09f86d7e99a4c577a2f6e2c650ad430a45c86aca.tar.xz
- fixes comparison of struct against null (no no no)
- fixes IRCBridgeModule's XmlRpc method really paying attention to region parameter - cleans up indentation in IRCBridge code - fixes ConciergeModule exception on client logout
Diffstat (limited to 'OpenSim/Region/Environment/Scenes')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.Inventory.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
index 8f38d39..42986ec 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
@@ -2360,7 +2360,7 @@ namespace OpenSim.Region.Environment.Scenes
2360 2360
2361 public void AttachObject(IClientAPI remoteClient, uint AttachmentPt, UUID itemID, SceneObjectGroup att) 2361 public void AttachObject(IClientAPI remoteClient, uint AttachmentPt, UUID itemID, SceneObjectGroup att)
2362 { 2362 {
2363 if (null == itemID) 2363 if (UUID.Zero == itemID)
2364 { 2364 {
2365 m_log.Error("[SCENE INVENTORY]: Unable to save attachment. Error inventory item ID."); 2365 m_log.Error("[SCENE INVENTORY]: Unable to save attachment. Error inventory item ID.");
2366 return; 2366 return;