mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 03:45:35 +08:00
Moved RegionName from RegionInfo to SimpleRegionInfo.
This commit is contained in:
@@ -179,7 +179,7 @@ namespace OpenSim.Services.GridService
|
||||
rdata.posY = (int)rinfo.RegionLocY;
|
||||
rdata.RegionID = rinfo.RegionID;
|
||||
rdata.Data = rinfo.ToKeyValuePairs();
|
||||
//rdata.RegionName = rinfo.RegionName;
|
||||
rdata.RegionName = rinfo.RegionName;
|
||||
|
||||
return rdata;
|
||||
}
|
||||
@@ -190,7 +190,7 @@ namespace OpenSim.Services.GridService
|
||||
rinfo.RegionLocX = (uint)rdata.posX;
|
||||
rinfo.RegionLocY = (uint)rdata.posY;
|
||||
rinfo.RegionID = rdata.RegionID;
|
||||
//rinfo.RegionName = rdata.RegionName;
|
||||
rinfo.RegionName = rdata.RegionName;
|
||||
|
||||
return rinfo;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user