aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework/DynamicAttributes
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-03-15 00:27:06 +0000
committerJustin Clark-Casey (justincc)2013-03-15 00:27:06 +0000
commitcb74186888d987ec353a257d677aa35b0dc63c0a (patch)
treee2018d230ce4ba63ba81c089a474feaf35be9822 /OpenSim/Region/CoreModules/Framework/DynamicAttributes
parentrefactor: make llGetLinkName() and llGetLinkKey() use a common GetLinkEntity(... (diff)
downloadopensim-SC_OLD-cb74186888d987ec353a257d677aa35b0dc63c0a.zip
opensim-SC_OLD-cb74186888d987ec353a257d677aa35b0dc63c0a.tar.gz
opensim-SC_OLD-cb74186888d987ec353a257d677aa35b0dc63c0a.tar.bz2
opensim-SC_OLD-cb74186888d987ec353a257d677aa35b0dc63c0a.tar.xz
Add ParentGroup.HasGroupChanged = true setting to DAExampleModule as this is necessary to get attributes to save (though this probably happens anyway due to the prim move)
Diffstat (limited to 'OpenSim/Region/CoreModules/Framework/DynamicAttributes')
-rw-r--r--OpenSim/Region/CoreModules/Framework/DynamicAttributes/DAExampleModule.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/DynamicAttributes/DAExampleModule.cs b/OpenSim/Region/CoreModules/Framework/DynamicAttributes/DAExampleModule.cs
index f874495..854e00d 100644
--- a/OpenSim/Region/CoreModules/Framework/DynamicAttributes/DAExampleModule.cs
+++ b/OpenSim/Region/CoreModules/Framework/DynamicAttributes/DAExampleModule.cs
@@ -106,6 +106,8 @@ namespace OpenSim.Region.Framework.DynamicAttributes.DAExampleModule
106 106
107 sop.DynAttrs[Name] = attrs; 107 sop.DynAttrs[Name] = attrs;
108 } 108 }
109
110 sop.ParentGroup.HasGroupChanged = true;
109 111
110 m_dialogMod.SendGeneralAlert(string.Format("{0} {1} moved {2} times", sop.Name, sop.UUID, newValue)); 112 m_dialogMod.SendGeneralAlert(string.Format("{0} {1} moved {2} times", sop.Name, sop.UUID, newValue));
111 113