aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IGridService.cs
diff options
context:
space:
mode:
authorRobert Adams2013-12-28 07:20:14 -0800
committerRobert Adams2013-12-28 07:20:14 -0800
commiteab9390e05920ac848df4e4c9681858b70858b34 (patch)
tree2cd7a0a4725afcba4fce6c35e17aae5b8014c0ff /OpenSim/Services/Interfaces/IGridService.cs
parentAdd serialization/deserialization of region size to RegionInfo, GridRegion, a... (diff)
downloadopensim-SC_OLD-eab9390e05920ac848df4e4c9681858b70858b34.zip
opensim-SC_OLD-eab9390e05920ac848df4e4c9681858b70858b34.tar.gz
opensim-SC_OLD-eab9390e05920ac848df4e4c9681858b70858b34.tar.bz2
opensim-SC_OLD-eab9390e05920ac848df4e4c9681858b70858b34.tar.xz
Initialize default region size in GridRegion in the no parameter constructor
as is used by the grid connector tests.
Diffstat (limited to 'OpenSim/Services/Interfaces/IGridService.cs')
-rw-r--r--OpenSim/Services/Interfaces/IGridService.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/IGridService.cs b/OpenSim/Services/Interfaces/IGridService.cs
index 651bd97..59d6167 100644
--- a/OpenSim/Services/Interfaces/IGridService.cs
+++ b/OpenSim/Services/Interfaces/IGridService.cs
@@ -220,6 +220,8 @@ namespace OpenSim.Services.Interfaces
220 220
221 public GridRegion() 221 public GridRegion()
222 { 222 {
223 RegionSizeX = (int)Constants.RegionSize;
224 RegionSizeY = (int)Constants.RegionSize;
223 m_serverURI = string.Empty; 225 m_serverURI = string.Empty;
224 } 226 }
225 227