aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/RegionInfo.cs
diff options
context:
space:
mode:
authorDiva Canto2010-03-31 21:30:44 -0700
committerDiva Canto2010-03-31 21:30:44 -0700
commit08ba34da0325e3ed2a839cff62f2020742e887e7 (patch)
treecb5fc3693b3b6a029c476a4e24f9cd2eae4ad53f /OpenSim/Framework/RegionInfo.cs
parentAdd missing licenses. Change relicensed LightShare module to proper BSD (diff)
downloadopensim-SC_OLD-08ba34da0325e3ed2a839cff62f2020742e887e7.zip
opensim-SC_OLD-08ba34da0325e3ed2a839cff62f2020742e887e7.tar.gz
opensim-SC_OLD-08ba34da0325e3ed2a839cff62f2020742e887e7.tar.bz2
opensim-SC_OLD-08ba34da0325e3ed2a839cff62f2020742e887e7.tar.xz
First attempt at fixing mantis #4641. It's better but there are now some issues with permissions.
(looks like my commit is going to touch CM files, I'm going to let it do it - eof only)
Diffstat (limited to 'OpenSim/Framework/RegionInfo.cs')
-rw-r--r--OpenSim/Framework/RegionInfo.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs
index 5eacd73..ad98816 100644
--- a/OpenSim/Framework/RegionInfo.cs
+++ b/OpenSim/Framework/RegionInfo.cs
@@ -38,7 +38,7 @@ using OpenSim.Framework.Console;
38 38
39 39
40namespace OpenSim.Framework 40namespace OpenSim.Framework
41{ 41{
42 public class RegionLightShareData : ICloneable 42 public class RegionLightShareData : ICloneable
43 { 43 {
44 public UUID regionID = UUID.Zero; 44 public UUID regionID = UUID.Zero;
@@ -86,11 +86,11 @@ namespace OpenSim.Framework
86 { 86 {
87 if (OnSave != null) 87 if (OnSave != null)
88 OnSave(this); 88 OnSave(this);
89 } 89 }
90 public object Clone() 90 public object Clone()
91 { 91 {
92 return this.MemberwiseClone(); // call clone method 92 return this.MemberwiseClone(); // call clone method
93 } 93 }
94 94
95 } 95 }
96 96