aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.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/Scene.PacketHandlers.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 'OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs b/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs
index 869c936..ebdb0a6 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs
@@ -69,7 +69,7 @@ namespace OpenSim.Region.Environment.Scenes
69 } 69 }
70 70
71 /// <summary> 71 /// <summary>
72 /// 72 /// Invoked when the client selects a prim.
73 /// </summary> 73 /// </summary>
74 /// <param name="primLocalID"></param> 74 /// <param name="primLocalID"></param>
75 /// <param name="remoteClient"></param> 75 /// <param name="remoteClient"></param>
@@ -80,8 +80,7 @@ namespace OpenSim.Region.Environment.Scenes
80 foreach (EntityBase ent in EntitieList) 80 foreach (EntityBase ent in EntitieList)
81 { 81 {
82 if (ent is SceneObjectGroup) 82 if (ent is SceneObjectGroup)
83 { 83 {
84
85 if (((SceneObjectGroup) ent).LocalId == primLocalID) 84 if (((SceneObjectGroup) ent).LocalId == primLocalID)
86 { 85 {
87 // A prim is only tainted if it's allowed to be edited by the person clicking it. 86 // A prim is only tainted if it's allowed to be edited by the person clicking it.