Initialize default region size in GridRegion in the no parameter constructor

as is used by the grid connector tests.
varregion
Robert Adams 2013-12-28 07:20:14 -08:00
parent 6869633d76
commit eab9390e05
1 changed files with 2 additions and 0 deletions

View File

@ -220,6 +220,8 @@ namespace OpenSim.Services.Interfaces
public GridRegion()
{
RegionSizeX = (int)Constants.RegionSize;
RegionSizeY = (int)Constants.RegionSize;
m_serverURI = string.Empty;
}