aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-11-10 05:21:51 +0000
committerMelanie Thielker2008-11-10 05:21:51 +0000
commitfc6f3edec60c391bbd986ee021bff0e5fa4991c0 (patch)
treedf3c3704c39be31cd314918d8fa52dc344978f11 /OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
parentThank you, idb, for a patch that fixes avatar height calculation (diff)
downloadopensim-SC_OLD-fc6f3edec60c391bbd986ee021bff0e5fa4991c0.zip
opensim-SC_OLD-fc6f3edec60c391bbd986ee021bff0e5fa4991c0.tar.gz
opensim-SC_OLD-fc6f3edec60c391bbd986ee021bff0e5fa4991c0.tar.bz2
opensim-SC_OLD-fc6f3edec60c391bbd986ee021bff0e5fa4991c0.tar.xz
Stop attachments from causing an update to be sent on every frame in which
an avatar moves.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.Inventory.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
index b0bac42..ff4abc7 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
@@ -2356,9 +2356,9 @@ namespace OpenSim.Region.Environment.Scenes
2356 return att.UUID; 2356 return att.UUID;
2357 } 2357 }
2358 2358
2359 public void AttachObject(IClientAPI controllingClient, uint localID, uint attachPoint, Quaternion rot, Vector3 pos) 2359 public void AttachObject(IClientAPI controllingClient, uint localID, uint attachPoint, Quaternion rot, Vector3 pos, bool silent)
2360 { 2360 {
2361 m_innerScene.AttachObject(controllingClient, localID, attachPoint, rot, pos, false); 2361 m_innerScene.AttachObject(controllingClient, localID, attachPoint, rot, pos, silent);
2362 } 2362 }
2363 2363
2364 public void AttachObject(IClientAPI remoteClient, uint AttachmentPt, UUID itemID, SceneObjectGroup att) 2364 public void AttachObject(IClientAPI remoteClient, uint AttachmentPt, UUID itemID, SceneObjectGroup att)