Fixed small bug in having to deal with RegionInfo's ServerURI, which wasn't being set.

0.6.8-post-fixes
Diva Canto 2009-09-27 21:14:31 -07:00
parent 0766b6dc34
commit 73a61a8a32
1 changed files with 1 additions and 0 deletions

View File

@ -240,6 +240,7 @@ namespace OpenSim.Grid.UserServer.Modules
rinfo.RegionLocY = (uint)(gregion.RegionLocY / Constants.RegionSize);
rinfo.RegionName = gregion.RegionName;
rinfo.ScopeID = gregion.ScopeID;
rinfo.ServerURI = "http://" + gregion.ExternalHostName + ":" + gregion.HttpPort.ToString();
return rinfo;
}