aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-04-03 13:33:46 +0000
committerJustin Clarke Casey2008-04-03 13:33:46 +0000
commit6ef4f1bdae63d156f2dfad9a440ba52a9b84dc85 (patch)
tree7fe1ee918ce816cdf6cec7c49e186b5ac91aff48 /OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
parentpoint in time update of NHibernate Asset Mapping code (diff)
downloadopensim-SC_OLD-6ef4f1bdae63d156f2dfad9a440ba52a9b84dc85.zip
opensim-SC_OLD-6ef4f1bdae63d156f2dfad9a440ba52a9b84dc85.tar.gz
opensim-SC_OLD-6ef4f1bdae63d156f2dfad9a440ba52a9b84dc85.tar.bz2
opensim-SC_OLD-6ef4f1bdae63d156f2dfad9a440ba52a9b84dc85.tar.xz
* Resolve mantis 849
* Scripts in prims within linksets can now be properly edited using the 'edit linked parts' linden ui option
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneObjectPart.cs9
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
index 5e49314..b42375f 100644
--- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
@@ -2150,9 +2150,10 @@ namespace OpenSim.Region.Environment.Scenes
2150 } 2150 }
2151 2151
2152 /// <summary> 2152 /// <summary>
2153 /// 2153 /// Sends a full update to the client
2154 /// </summary> 2154 /// </summary>
2155 /// <param name="remoteClient"></param> 2155 /// <param name="remoteClient"></param>
2156 /// <param name="clientFlags"></param>
2156 public void SendFullUpdateToClient(IClientAPI remoteClient, uint clientflags) 2157 public void SendFullUpdateToClient(IClientAPI remoteClient, uint clientflags)
2157 { 2158 {
2158 LLVector3 lPos; 2159 LLVector3 lPos;
@@ -2160,6 +2161,12 @@ namespace OpenSim.Region.Environment.Scenes
2160 SendFullUpdateToClient(remoteClient, lPos, clientflags); 2161 SendFullUpdateToClient(remoteClient, lPos, clientflags);
2161 } 2162 }
2162 2163
2164 /// <summary>
2165 /// Sends a full update to the client
2166 /// </summary>
2167 /// <param name="remoteClient"></param>
2168 /// <param name="lPos"></param>
2169 /// <param name="clientFlags"></param>
2163 public void SendFullUpdateToClient(IClientAPI remoteClient, LLVector3 lPos, uint clientFlags) 2170 public void SendFullUpdateToClient(IClientAPI remoteClient, LLVector3 lPos, uint clientFlags)
2164 { 2171 {
2165 LLQuaternion lRot; 2172 LLQuaternion lRot;