* One line fix to get everything working again. Essentially set the originRegionID = RegionID in RegionInfo.cs on line 375

0.6.0-stable
Teravus Ovares 2008-03-04 14:39:51 +00:00
parent d2806090ae
commit 18324773d2
2 changed files with 1 additions and 1 deletions

View File

@ -372,6 +372,7 @@ namespace OpenSim.Framework
{ {
case "sim_UUID": case "sim_UUID":
RegionID = (LLUUID) configuration_result; RegionID = (LLUUID) configuration_result;
originRegionID = (LLUUID)configuration_result;
break; break;
case "sim_name": case "sim_name":
RegionName = (string) configuration_result; RegionName = (string) configuration_result;

View File

@ -235,7 +235,6 @@ namespace OpenSim.Region.Environment.Scenes
ModuleLoader moduleLoader, bool dumpAssetsToFile, bool physicalPrim, bool SeeIntoRegionFromNeighbor) ModuleLoader moduleLoader, bool dumpAssetsToFile, bool physicalPrim, bool SeeIntoRegionFromNeighbor)
{ {
updateLock = new Mutex(false); updateLock = new Mutex(false);
m_moduleLoader = moduleLoader; m_moduleLoader = moduleLoader;
m_authenticateHandler = authen; m_authenticateHandler = authen;
CommsManager = commsMan; CommsManager = commsMan;