aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/General/Types
diff options
context:
space:
mode:
authorMW2007-07-10 18:58:42 +0000
committerMW2007-07-10 18:58:42 +0000
commitebdc64730a832a6e5dc2dc7d304eff813c73e933 (patch)
tree383ce392c831c1cf788f6d4c564db2416a2d6fe9 /OpenSim/Framework/General/Types
parentGird mode in sugilite should now work in so far as you should be able to logi... (diff)
downloadopensim-SC_OLD-ebdc64730a832a6e5dc2dc7d304eff813c73e933.zip
opensim-SC_OLD-ebdc64730a832a6e5dc2dc7d304eff813c73e933.tar.gz
opensim-SC_OLD-ebdc64730a832a6e5dc2dc7d304eff813c73e933.tar.bz2
opensim-SC_OLD-ebdc64730a832a6e5dc2dc7d304eff813c73e933.tar.xz
Fixed the crashing when trying to look at the map in grid mode. Although the textures for the regions don't seem to show up, about to look into that.
Diffstat (limited to 'OpenSim/Framework/General/Types')
-rw-r--r--OpenSim/Framework/General/Types/RegionInfo.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/Types/RegionInfo.cs b/OpenSim/Framework/General/Types/RegionInfo.cs
index e6bc82a..72d1a4c 100644
--- a/OpenSim/Framework/General/Types/RegionInfo.cs
+++ b/OpenSim/Framework/General/Types/RegionInfo.cs
@@ -117,6 +117,20 @@ namespace OpenSim.Framework.Types
117 } 117 }
118 } 118 }
119 119
120 // Only used for remote regions , ie ones not in the current instance
121 private uint m_remotingPort;
122 public uint RemotingPort
123 {
124 get
125 {
126 return m_remotingPort;
127 }
128 set
129 {
130 m_remotingPort = value;
131 }
132 }
133
120 public string DataStore = ""; 134 public string DataStore = "";
121 public bool isSandbox = false; 135 public bool isSandbox = false;
122 136